From f913b02d1d147737a8bee76ecd173899950e9b86 Mon Sep 17 00:00:00 2001 From: Tom Copeland Date: Wed, 5 Apr 2006 14:04:42 +0000 Subject: [PATCH] Added IRuleViolation git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@4322 51baf565-9d33-0410-a72c-fc3788e3496d --- pmd/src/net/sourceforge/pmd/IRuleViolation.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pmd/src/net/sourceforge/pmd/IRuleViolation.java 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(); +}