TPTP 4.5.0 Platform Project
Public API Specification

org.eclipse.tptp.platform.llc.core.report
Interface ILineInfo


public interface ILineInfo

This interface is implemented by the objects of the collection returned by ICoverageClass.getLineInfo()
See ICoverageClass


Field Summary
static int LINE_COV
          State constant meaning that the line is fully covered
static int LINE_PARTCOV
          State constant meaning that the line is partially covered, i.e. it contains at least one coverage unit that is covered and at least one that is not covered
static int LINE_UNCOV
          State constant meaning that the line is not covered at all
 
Method Summary
 int getLine()
           
 int getState()
           
 

Field Detail

LINE_COV

static final int LINE_COV
State constant meaning that the line is fully covered

See Also:
Constant Field Values

LINE_UNCOV

static final int LINE_UNCOV
State constant meaning that the line is not covered at all

See Also:
Constant Field Values

LINE_PARTCOV

static final int LINE_PARTCOV
State constant meaning that the line is partially covered, i.e. it contains at least one coverage unit that is covered and at least one that is not covered

See Also:
Constant Field Values
Method Detail

getState

int getState()
Returns:
the coverage state of this line amongst LINE_COV, LINE_UNCOV and LINE_PARTCOV

getLine

int getLine()
Returns:
the source line number of this line

TPTP 4.5.0 Platform Project
Public API Specification