|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ILines
For all elements that are located in a source file and for source files itself individual line coverage is described by this interface.
Field Summary | |
---|---|
static byte |
FULLY_COVERED
Flag for lines that are fully covered (value is 0x02). |
static byte |
NO_CODE
Flag for lines that do not contain code (value is 0x00). |
static byte |
NOT_COVERED
Flag for lines that are not covered (value is 0x01). |
static byte |
PARTLY_COVERED
Flag for lines that are partly covered (value is 0x03). |
Method Summary | |
---|---|
int |
getFirstLine()
The number of the first line coverage information is available for. |
int |
getLastLine()
The number of the last line coverage information is available for. |
byte |
getStatus(int line)
Returns the coverage status of the given line. |
Methods inherited from interface org.jacoco.core.analysis.ICounter |
---|
getCoveredCount, getCoveredRatio, getMissedCount, getMissedRatio, getTotalCount |
Field Detail |
---|
static final byte NO_CODE
static final byte NOT_COVERED
static final byte FULLY_COVERED
static final byte PARTLY_COVERED
Method Detail |
---|
int getFirstLine()
int getLastLine()
byte getStatus(int line)
line
- number of the line in question
NO_CODE
,
NOT_COVERED
,
PARTLY_COVERED
,
FULLY_COVERED
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |