Uses of Class
org.jacoco.core.internal.analysis.CounterImpl
-
Packages that use CounterImpl Package Description org.jacoco.core.analysis Coverage calculation and analysis.org.jacoco.core.internal.analysis -
-
Uses of CounterImpl in org.jacoco.core.analysis
Fields in org.jacoco.core.analysis declared as CounterImpl Modifier and Type Field Description protected CounterImpl
CoverageNodeImpl. branchCounter
Counter for branches.protected CounterImpl
CoverageNodeImpl. classCounter
Counter for classes.protected CounterImpl
CoverageNodeImpl. complexityCounter
Counter for complexity.protected CounterImpl
CoverageNodeImpl. instructionCounter
Counter for instructions.protected CounterImpl
CoverageNodeImpl. lineCounter
Counter for linesprotected CounterImpl
CoverageNodeImpl. methodCounter
Counter for methods. -
Uses of CounterImpl in org.jacoco.core.internal.analysis
Fields in org.jacoco.core.internal.analysis declared as CounterImpl Modifier and Type Field Description protected CounterImpl
LineImpl. branches
branch counterstatic CounterImpl
CounterImpl. COUNTER_0_0
Constant for Counter with 0/0 values.static CounterImpl
CounterImpl. COUNTER_0_1
Constant for Counter with 0/1 values.static CounterImpl
CounterImpl. COUNTER_1_0
Constant for Counter with 1/0 values.protected CounterImpl
LineImpl. instructions
instruction counterMethods in org.jacoco.core.internal.analysis that return CounterImpl Modifier and Type Method Description static CounterImpl
CounterImpl. getInstance(int missed, int covered)
Factory method to retrieve a counter with the given number of items.static CounterImpl
CounterImpl. getInstance(ICounter counter)
Factory method to retrieve a clone of the given counter.abstract CounterImpl
CounterImpl. increment(int missed, int covered)
Returns a counter with values incremented by the given numbers.CounterImpl
CounterImpl. increment(ICounter counter)
Returns a counter with values incremented by the numbers of the given counter.
-