Uses of Class
net.sourceforge.pmd.Report
-
Packages that use Report Package Description net.sourceforge.pmd This is the PMD programming mistake detector.net.sourceforge.pmd.ant net.sourceforge.pmd.processor net.sourceforge.pmd.renderers -
-
Uses of Report in net.sourceforge.pmd
Methods in net.sourceforge.pmd that return Report Modifier and Type Method Description static Report
Report. createReport(RuleContext ctx, String fileName)
Creates a new, initialized, empty report for the given file name.Report
RuleContext. getReport()
Get the Report to which Rule Violations are sent.static Report
PMD. processFiles(PMDConfiguration configuration, List<RuleSet> rulesets, Collection<? extends DataSource> files, List<Renderer> renderers)
Run PMD using the given configuration.Methods in net.sourceforge.pmd with parameters of type Report Modifier and Type Method Description void
Report. merge(Report r)
Merges the given report into this report.void
RuleContext. setReport(Report report)
Set the Report to which Rule Violations are sent. -
Uses of Report in net.sourceforge.pmd.ant
Methods in net.sourceforge.pmd.ant with parameters of type Report Modifier and Type Method Description void
Formatter. end(Report errorReport)
-
Uses of Report in net.sourceforge.pmd.processor
Methods in net.sourceforge.pmd.processor that return Report Modifier and Type Method Description Report
PmdRunnable. call()
Deprecated.Methods in net.sourceforge.pmd.processor with parameters of type Report Modifier and Type Method Description protected RuleSets
AbstractPMDProcessor. createRuleSets(RuleSetFactory factory, Report report)
Deprecated.Create instances for each rule defined in the ruleset(s) in the configuration.void
AbstractPMDProcessor. renderReports(List<Renderer> renderers, Report report)
Deprecated.static void
AbstractPMDProcessor. reportBrokenRules(Report report, RuleSets rs)
Deprecated. -
Uses of Report in net.sourceforge.pmd.renderers
Fields in net.sourceforge.pmd.renderers declared as Report Modifier and Type Field Description protected Report
AbstractAccumulatingRenderer. report
The accumulated Report.Methods in net.sourceforge.pmd.renderers with parameters of type Report Modifier and Type Method Description void
HTMLRenderer. renderBody(Writer writer, Report report)
Write the body of the main body of the HTML content.void
AbstractAccumulatingRenderer. renderFileReport(Report report)
void
AbstractIncrementingRenderer. renderFileReport(Report report)
void
EmptyRenderer. renderFileReport(Report report)
void
Renderer. renderFileReport(Report report)
Render the given file Report.
-