Added IRuleViolation

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@4322 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Tom Copeland
2006-04-05 14:04:42 +00:00
parent ea785d2601
commit f913b02d1d

View File

@ -0,0 +1,16 @@
package net.sourceforge.pmd;
public interface IRuleViolation {
String getFilename();
int getBeginLine();
int getBeginColumn();
int getEndLine();
int getEndColumn();
Rule getRule();
String getDescription();
String getPackageName();
String getMethodName();
String getClassName();
boolean isSuppressed();
String getVariableName();
}