org.eclipse.tptp.platform.llc.core.report
Interface ICoverageVisitor
public interface ICoverageVisitor
This interface defines a coverage visitor.
Calling org.eclipse.tptp.platform.llc.core.report.StructuredReportReader.accept(ICoverageVisitor),
the two requested visit methods are called on the whole coverage components/classes tree data structure.
For each component, the component itself is visited, then its classes, then its sub-components.
An example of that is org.eclipse.tptp.platform.llc.core.report.SampleCoverageVisitor.
visit
void visit(IComponent component)
visit
void visit(ICoverageClass cclass)
visit
void visit(ICoverageMethod cmethod)