TPTP 4.6.0 Platform Project
Public API Specification

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.


Method Summary
 void visit(IComponent component)
           
 void visit(ICoverageClass cclass)
           
 void visit(ICoverageMethod cmethod)
           
 

Method Detail

visit

void visit(IComponent component)

visit

void visit(ICoverageClass cclass)

visit

void visit(ICoverageMethod cmethod)

TPTP 4.6.0 Platform Project
Public API Specification