| java.lang.Object net.sourceforge.pmd.dfa.report.ReportVisitor net.sourceforge.pmd.dfa.report.ReportHTMLPrintVisitor
ReportHTMLPrintVisitor | public class ReportHTMLPrintVisitor extends ReportVisitor (Code) | | author: raik author: author: Uses the generated result tree instead of the result list. The visitor author: traverses the tree and creates several html files. The "package view" file author: (index.html) displays an overview of packgages, classes and the number of author: rule violations they contain. All the other html files represent a class author: and show detailed information about the violations. |
ReportHTMLPrintVisitor | public ReportHTMLPrintVisitor(String baseDir)(Code) | | |
visit | public void visit(AbstractReportNode node)(Code) | | The visit method (Visitor Pattern). There are 3 types of ReportNodes:
RuleViolation - contains a RuleViolation, Class - represents a class and
contains the name of the class, Package - represents a package and
contains the name(s) of the package.
|
|
|