Clover coverage report - PMD - 3.7
Coverage timestamp: Wed May 31 2006 09:25:59 EDT
file stats: LOC: 14   Methods: 1
NCLOC: 9   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
AbstractRenderer.java - 0% 0% 0%
coverage
 1    package net.sourceforge.pmd.renderers;
 2   
 3    import net.sourceforge.pmd.Report;
 4   
 5    public abstract class AbstractRenderer implements Renderer {
 6   
 7    protected boolean showSuppressedViolations = true;
 8   
 9  0 public void showSuppressedViolations(boolean show) {
 10  0 this.showSuppressedViolations = show;
 11    }
 12   
 13    public abstract String render(Report report);
 14    }