1 /* 2 * Created on Apr 28, 2005 3 * 4 * written by Matthias Kempka 5 */ 6 package de.uka.ipd.coverage.natures; 7 8 /** 9 * Created on Apr 28, 2005 10 * @author Matthias Kempka 11 */ 12 public interface ISourceCodeLine { 13 14 /** 15 * @return returns the sourcecode line number this object points to. 16 */ 17 public int getSourceCodeLine(); 18 19 } 20