Uses of Interface
org.jacoco.report.IReportGroupVisitor
-
Packages that use IReportGroupVisitor Package Description org.jacoco.ant org.jacoco.maven org.jacoco.report Common interfaces and utilities for report generation.org.jacoco.report.csv CSV report implementation.org.jacoco.report.internal org.jacoco.report.internal.html org.jacoco.report.internal.xml -
-
Uses of IReportGroupVisitor in org.jacoco.ant
Methods in org.jacoco.ant with parameters of type IReportGroupVisitor Modifier and Type Method Description private void
ReportTask. createReport(IReportGroupVisitor visitor, ReportTask.GroupElement group)
-
Uses of IReportGroupVisitor in org.jacoco.maven
Methods in org.jacoco.maven with parameters of type IReportGroupVisitor Modifier and Type Method Description (package private) abstract void
AbstractReportMojo. createReport(IReportGroupVisitor visitor, ReportSupport support)
(package private) void
ReportAggregateMojo. createReport(IReportGroupVisitor visitor, ReportSupport support)
(package private) void
ReportITMojo. createReport(IReportGroupVisitor visitor, ReportSupport support)
(package private) void
ReportMojo. createReport(IReportGroupVisitor visitor, ReportSupport support)
private void
ReportAggregateMojo. processProject(ReportSupport support, IReportGroupVisitor group, org.apache.maven.project.MavenProject project)
void
ReportSupport. processProject(IReportGroupVisitor visitor, java.lang.String bundleName, org.apache.maven.project.MavenProject project, java.util.List<java.lang.String> includes, java.util.List<java.lang.String> excludes, java.lang.String srcEncoding)
Calculates coverage for the given project and emits it to the report group including source referencesprivate void
ReportSupport. processProject(IReportGroupVisitor visitor, java.lang.String bundleName, org.apache.maven.project.MavenProject project, java.util.List<java.lang.String> includes, java.util.List<java.lang.String> excludes, ISourceFileLocator locator)
void
ReportSupport. processProject(IReportGroupVisitor visitor, org.apache.maven.project.MavenProject project, java.util.List<java.lang.String> includes, java.util.List<java.lang.String> excludes)
Calculates coverage for the given project and emits it to the report group without source references -
Uses of IReportGroupVisitor in org.jacoco.report
Subinterfaces of IReportGroupVisitor in org.jacoco.report Modifier and Type Interface Description interface
IReportVisitor
Interface for all implementations to retrieve structured report data.Classes in org.jacoco.report that implement IReportGroupVisitor Modifier and Type Class Description (package private) class
MultiGroupVisitor
class
MultiReportVisitor
A report visitor that is composed from multiple other visitors.Fields in org.jacoco.report with type parameters of type IReportGroupVisitor Modifier and Type Field Description private java.util.List<? extends IReportGroupVisitor>
MultiGroupVisitor. visitors
Methods in org.jacoco.report that return IReportGroupVisitor Modifier and Type Method Description IReportGroupVisitor
IReportGroupVisitor. visitGroup(java.lang.String name)
Called to add a new group to the report.IReportGroupVisitor
MultiGroupVisitor. visitGroup(java.lang.String name)
Constructor parameters in org.jacoco.report with type arguments of type IReportGroupVisitor Constructor Description MultiGroupVisitor(java.util.List<? extends IReportGroupVisitor> visitors)
-
Uses of IReportGroupVisitor in org.jacoco.report.csv
Classes in org.jacoco.report.csv that implement IReportGroupVisitor Modifier and Type Class Description (package private) class
CSVGroupHandler
Report visitor that handles coverage information for groups.Methods in org.jacoco.report.csv that return IReportGroupVisitor Modifier and Type Method Description IReportGroupVisitor
CSVGroupHandler. visitGroup(java.lang.String name)
-
Uses of IReportGroupVisitor in org.jacoco.report.internal
Classes in org.jacoco.report.internal that implement IReportGroupVisitor Modifier and Type Class Description class
AbstractGroupVisitor
Internal base visitor to calculate group counter summaries for hierarchical reports.Methods in org.jacoco.report.internal that return IReportGroupVisitor Modifier and Type Method Description IReportGroupVisitor
AbstractGroupVisitor. visitGroup(java.lang.String name)
-
Uses of IReportGroupVisitor in org.jacoco.report.internal.html
Classes in org.jacoco.report.internal.html that implement IReportGroupVisitor Modifier and Type Class Description class
HTMLGroupVisitor
Group visitor for HTML reports. -
Uses of IReportGroupVisitor in org.jacoco.report.internal.xml
Classes in org.jacoco.report.internal.xml that implement IReportGroupVisitor Modifier and Type Class Description class
XMLGroupVisitor
AIReportGroupVisitor
that transforms the report structure into XML elements.
-