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
Subclasses of CounterImpl in org.jacoco.core.internal.analysis Modifier and Type Class Description private static class
CounterImpl.Fix
Immutable version of the counter.private static class
CounterImpl.Var
Mutable version of the counter.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 counterprivate static CounterImpl[][]
CounterImpl. SINGLETONS
Methods 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.CounterImpl
CounterImpl.Fix. increment(int missed, int covered)
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.CounterImpl
CounterImpl.Var. increment(int missed, int covered)
Methods in org.jacoco.core.internal.analysis with parameters of type CounterImpl Modifier and Type Method Description private static LineImpl
LineImpl. getInstance(CounterImpl instructions, CounterImpl branches)
Constructors in org.jacoco.core.internal.analysis with parameters of type CounterImpl Constructor Description LineImpl(CounterImpl instructions, CounterImpl branches)
Var(CounterImpl instructions, CounterImpl branches)
-