Added IRuleViolation
git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@4322 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
16
pmd/src/net/sourceforge/pmd/IRuleViolation.java
Normal file
16
pmd/src/net/sourceforge/pmd/IRuleViolation.java
Normal 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();
|
||||
}
|
Reference in New Issue
Block a user