|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
CanSuppressWarnings.java | - | - | - | - |
|
1 | package net.sourceforge.pmd.ast; | |
2 | ||
3 | import net.sourceforge.pmd.Rule; | |
4 | ||
5 | public interface CanSuppressWarnings { | |
6 | boolean hasSuppressWarningsAnnotationFor(Rule rule); | |
7 | } |
|