01: package net.sourceforge.pmd;
02:
03: public interface IRuleViolation {
04: String getFilename();
05:
06: int getBeginLine();
07:
08: int getBeginColumn();
09:
10: int getEndLine();
11:
12: int getEndColumn();
13:
14: Rule getRule();
15:
16: String getDescription();
17:
18: String getPackageName();
19:
20: String getMethodName();
21:
22: String getClassName();
23:
24: boolean isSuppressed();
25:
26: String getVariableName();
27: }
|