|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
AbstractRenderer.java | - | 0% | 0% | 0% |
|
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 | } |
|