View Javadoc
1 /*** 2 * StatmentSegment 3 * 4 * This is the interface you should define 5 * if you are reporting on StatementCoverage. 6 * 7 * This interface will help out with highlighting. 8 * 9 */ 10 11 package junit.quilt.framework; 12 13 public interface StatementSegment 14 extends CoverageSegment 15 { 16 /*** 17 * getFileName 18 * 19 * This returns the filename where these statements 20 * are located. 21 */ 22 public String getFileName(); 23 24 /*** 25 * getLineStart 26 * 27 * This returns the first line of this segment. 28 */ 29 public int getLineStart(); 30 31 /*** 32 * getLineEnd 33 * 34 * This returns the last line of this segment. 35 */ 36 public int getLineEnd(); 37 }

This page was automatically generated by Maven