|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
Renderer.java | - | - | - | - |
|
1 | /** | |
2 | * BSD-style license; for more info see http://pmd.sourceforge.net/license.html | |
3 | */ | |
4 | package net.sourceforge.pmd.renderers; | |
5 | ||
6 | import net.sourceforge.pmd.Report; | |
7 | ||
8 | public interface Renderer { | |
9 | void showSuppressedViolations(boolean show); | |
10 | ||
11 | String render(Report report); | |
12 | } |
|