Uses of Class
org.jacoco.core.internal.analysis.CounterImpl
Packages that use CounterImpl
Package
Description
Coverage calculation and analysis.
-
Uses of CounterImpl in org.jacoco.core.analysis
Fields in org.jacoco.core.analysis declared as CounterImplModifier and TypeFieldDescriptionprotected CounterImplCoverageNodeImpl.branchCounterCounter for branches.protected CounterImplCoverageNodeImpl.classCounterCounter for classes.protected CounterImplCoverageNodeImpl.complexityCounterCounter for complexity.protected CounterImplCoverageNodeImpl.instructionCounterCounter for instructions.protected CounterImplCoverageNodeImpl.lineCounterCounter for linesprotected CounterImplCoverageNodeImpl.methodCounterCounter for methods. -
Uses of CounterImpl in org.jacoco.core.internal.analysis
Subclasses of CounterImpl in org.jacoco.core.internal.analysisModifier and TypeClassDescriptionprivate static classImmutable version of the counter.private static classMutable version of the counter.Fields in org.jacoco.core.internal.analysis declared as CounterImplModifier and TypeFieldDescriptionprotected CounterImplLineImpl.branchesbranch counterstatic final CounterImplCounterImpl.COUNTER_0_0Constant for Counter with 0/0 values.static final CounterImplCounterImpl.COUNTER_0_1Constant for Counter with 0/1 values.static final CounterImplCounterImpl.COUNTER_1_0Constant for Counter with 1/0 values.protected CounterImplLineImpl.instructionsinstruction counterprivate static final CounterImpl[][]CounterImpl.SINGLETONSMethods in org.jacoco.core.internal.analysis that return CounterImplModifier and TypeMethodDescriptionstatic CounterImplCounterImpl.getInstance(int missed, int covered) Factory method to retrieve a counter with the given number of items.static CounterImplCounterImpl.getInstance(ICounter counter) Factory method to retrieve a clone of the given counter.CounterImpl.Fix.increment(int missed, int covered) abstract CounterImplCounterImpl.increment(int missed, int covered) Returns a counter with values incremented by the given numbers.Returns a counter with values incremented by the numbers of the given counter.CounterImpl.Var.increment(int missed, int covered) Methods in org.jacoco.core.internal.analysis with parameters of type CounterImplModifier and TypeMethodDescriptionprivate static LineImplLineImpl.getInstance(CounterImpl instructions, CounterImpl branches) Constructors in org.jacoco.core.internal.analysis with parameters of type CounterImplModifierConstructorDescriptionprivateLineImpl(CounterImpl instructions, CounterImpl branches) (package private)Var(CounterImpl instructions, CounterImpl branches)