Uses of Interface
org.jacoco.core.analysis.ICounter
-
Packages that use ICounter Package Description org.jacoco.cli.internal.commands org.jacoco.core.analysis Coverage calculation and analysis.org.jacoco.core.internal.analysis org.jacoco.report.internal.html.page 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.cli.internal.commands
Methods in org.jacoco.cli.internal.commands with parameters of type ICounter Modifier and Type Method Description private java.lang.String
ClassInfo.Printer. total(ICounter counter)
-
Uses of ICounter in org.jacoco.core.analysis
Fields in org.jacoco.core.analysis with type parameters of type ICounter Modifier and Type Field Description private java.util.Comparator<ICounter>
NodeComparator. counterComparator
Methods in org.jacoco.core.analysis that return ICounter 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.Methods in org.jacoco.core.analysis with parameters of type ICounter Modifier and Type Method Description int
CounterComparator. compare(ICounter c1, ICounter c2)
Constructor parameters in org.jacoco.core.analysis with type arguments of type ICounter Constructor Description NodeComparator(java.util.Comparator<ICounter> counterComparator, ICoverageNode.CounterEntity entity)
-
Uses of ICounter in org.jacoco.core.internal.analysis
Classes in org.jacoco.core.internal.analysis that implement ICounter Modifier and Type Class Description class
CounterImpl
ICounter
implementations.private static class
CounterImpl.Fix
Immutable version of the counter.private static class
CounterImpl.Var
Mutable version of the counter.Methods in org.jacoco.core.internal.analysis that return ICounter Modifier and Type Method Description ICounter
Instruction. getBranchCounter()
Returns the branch coverage counter of this instruction.ICounter
LineImpl. getBranchCounter()
ICounter
Instruction. getInstructionCounter()
Returns the instruction coverage counter of this instruction.ICounter
LineImpl. getInstructionCounter()
Methods in org.jacoco.core.internal.analysis with parameters of type ICounter 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.LineImpl
LineImpl.Fix. increment(ICounter instructions, ICounter branches)
abstract LineImpl
LineImpl. increment(ICounter instructions, ICounter branches)
Adds the given counters to this line.LineImpl
LineImpl.Var. increment(ICounter instructions, ICounter branches)
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.private void
SourceNodeImpl. incrementLine(ICounter instructions, ICounter branches, int line)
-
Uses of ICounter in org.jacoco.report.internal.html.page
Methods in org.jacoco.report.internal.html.page with parameters of type ICounter Modifier and Type Method Description private HTMLElement
SourceHighlighter. span(HTMLElement parent, java.lang.String id, java.lang.String style1, java.lang.String style2, java.lang.String title, ICounter branches)
-
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 int
CounterColumn. 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 void
ReportElement. counter(ICoverageNode.CounterEntity counterEntity, ICounter counter)
Creates a 'counter' element.private static void
ReportElement. counterAttributes(XMLElement element, java.lang.String missedattr, java.lang.String coveredattr, ICounter counter)
-