Uses of Interface
org.jacoco.core.analysis.ICounter
-
Packages that use ICounter 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.org.jacoco.report.internal.xml -
-
Uses of ICounter in org.jacoco.core.analysis
Methods in org.jacoco.core.analysis that return ICounter Modifier and Type Method Description ICounterCoverageNodeImpl. getBranchCounter()ICounterICoverageNode. getBranchCounter()Returns the counter for branches.ICounterILine. getBranchCounter()Returns the branches counter for this line.ICounterCoverageNodeImpl. getClassCounter()ICounterICoverageNode. getClassCounter()Returns the counter for classes.ICounterCoverageNodeImpl. getComplexityCounter()ICounterICoverageNode. getComplexityCounter()Returns the counter for cyclomatic complexity.ICounterCoverageNodeImpl. getCounter(ICoverageNode.CounterEntity entity)ICounterICoverageNode. getCounter(ICoverageNode.CounterEntity entity)Generic access to the the counters.ICounterCoverageNodeImpl. getInstructionCounter()ICounterICoverageNode. getInstructionCounter()Returns the counter for byte code instructions.ICounterILine. getInstructionCounter()Returns the instruction counter for this line.ICounterCoverageNodeImpl. getLineCounter()ICounterICoverageNode. getLineCounter()Returns the counter for lines.ICounterCoverageNodeImpl. getMethodCounter()ICounterICoverageNode. getMethodCounter()Returns the counter for methods.Methods in org.jacoco.core.analysis with parameters of type ICounter Modifier and Type Method Description intCounterComparator. compare(ICounter c1, ICounter c2) -
Uses of ICounter in org.jacoco.core.internal.analysis
Classes in org.jacoco.core.internal.analysis that implement ICounter Modifier and Type Class Description classCounterImplICounterimplementations.Methods in org.jacoco.core.internal.analysis that return ICounter Modifier and Type Method Description ICounterInstruction. getBranchCounter()Returns the branch coverage counter of this instruction.ICounterLineImpl. getBranchCounter()ICounterInstruction. getInstructionCounter()Returns the instruction coverage counter of this instruction.ICounterLineImpl. getInstructionCounter()Methods in org.jacoco.core.internal.analysis with parameters of type ICounter Modifier and Type Method Description static CounterImplCounterImpl. getInstance(ICounter counter)Factory method to retrieve a clone of the given counter.CounterImplCounterImpl. increment(ICounter counter)Returns a counter with values incremented by the numbers of the given counter.abstract LineImplLineImpl. increment(ICounter instructions, ICounter branches)Adds the given counters to this line.voidMethodCoverageImpl. increment(ICounter instructions, ICounter branches, int line)voidSourceNodeImpl. increment(ICounter instructions, ICounter branches, int line)Increments instructions and branches by the given counter values. -
Uses of ICounter in org.jacoco.report.internal.html.table
Methods in org.jacoco.report.internal.html.table with parameters of type ICounter Modifier and Type Method Description protected abstract intCounterColumn. getValue(ICounter counter)Retrieves the respective value from the counter. -
Uses of ICounter in org.jacoco.report.internal.xml
Methods in org.jacoco.report.internal.xml with parameters of type ICounter Modifier and Type Method Description voidReportElement. counter(ICoverageNode.CounterEntity counterEntity, ICounter counter)Creates a 'counter' element.
-