diff --git a/pmd/src/net/sourceforge/pmd/IRuleViolation.java b/pmd/src/net/sourceforge/pmd/IRuleViolation.java new file mode 100644 index 0000000000..1bd9c20b18 --- /dev/null +++ b/pmd/src/net/sourceforge/pmd/IRuleViolation.java @@ -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(); +}