Package | Description |
---|---|
org.jacoco.core.analysis |
Coverage calculation and analysis.
|
org.jacoco.core.internal.analysis | |
org.jacoco.report.internal.html.table |
Internal: Sortable HTML table for coverage node elements.
|
Modifier and Type | Method | Description |
---|---|---|
ICounter |
CoverageNodeImpl.getBranchCounter() |
|
ICounter |
ICoverageNode.getBranchCounter() |
Returns the counter for branches.
|
ICounter |
ILine.getBranchCounter() |
Returns the branches counter for this line.
|
ICounter |
CoverageNodeImpl.getClassCounter() |
|
ICounter |
ICoverageNode.getClassCounter() |
Returns the counter for classes.
|
ICounter |
CoverageNodeImpl.getComplexityCounter() |
|
ICounter |
ICoverageNode.getComplexityCounter() |
Returns the counter for cyclomatic complexity.
|
ICounter |
CoverageNodeImpl.getCounter(ICoverageNode.CounterEntity entity) |
|
ICounter |
ICoverageNode.getCounter(ICoverageNode.CounterEntity entity) |
Generic access to the the counters.
|
ICounter |
CoverageNodeImpl.getInstructionCounter() |
|
ICounter |
ICoverageNode.getInstructionCounter() |
Returns the counter for byte code instructions.
|
ICounter |
ILine.getInstructionCounter() |
Returns the instruction counter for this line.
|
ICounter |
CoverageNodeImpl.getLineCounter() |
|
ICounter |
ICoverageNode.getLineCounter() |
Returns the counter for lines.
|
ICounter |
CoverageNodeImpl.getMethodCounter() |
|
ICounter |
ICoverageNode.getMethodCounter() |
Returns the counter for methods.
|
Modifier and Type | Method | Description |
---|---|---|
int |
CounterComparator.compare(ICounter c1,
ICounter c2) |
Modifier and Type | Class | Description |
---|---|---|
class |
CounterImpl |
ICounter implementations. |
Modifier and Type | Method | Description |
---|---|---|
ICounter |
LineImpl.getBranchCounter() |
|
ICounter |
LineImpl.getInstructionCounter() |
Modifier and Type | Method | Description |
---|---|---|
static CounterImpl |
CounterImpl.getInstance(ICounter counter) |
Factory method to retrieve a clone of the given counter.
|
CounterImpl |
CounterImpl.increment(ICounter counter) |
Returns a counter with values incremented by the numbers of the given
counter.
|
abstract LineImpl |
LineImpl.increment(ICounter instructions,
ICounter branches) |
Adds the given counters to this line.
|
void |
MethodCoverageImpl.increment(ICounter instructions,
ICounter branches,
int line) |
|
void |
SourceNodeImpl.increment(ICounter instructions,
ICounter branches,
int line) |
Increments instructions and branches by the given counter values.
|
Modifier and Type | Method | Description |
---|---|---|
protected abstract int |
CounterColumn.getValue(ICounter counter) |
Retrieves the respective value from the counter.
|
Copyright © 2018. All rights reserved.