interface for refactor of position providers

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@3330 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Miguel Griffa
2005-03-08 16:47:55 +00:00
parent d4d473a5e2
commit 8cc02c8e05

View File

@ -0,0 +1,20 @@
/*
* Created on Mar 8, 2005
*
* $Id$
*/
package net.sourceforge.pmd;
/**
* Interface for classes that provide position information for a violation
*
* @author mgriffa
*/
public interface IPositionProvider {
int getBeginLine();
int getEndLine();
int getBeginColumn();
int getEndColumn();
}