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 public void showSuppressedViolations(boolean show) {
10 this.showSuppressedViolations = show;
11 }
12
13 public abstract String render(Report report);
14 }