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:
20
pmd/src/net/sourceforge/pmd/IPositionProvider.java
Normal file
20
pmd/src/net/sourceforge/pmd/IPositionProvider.java
Normal 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();
|
||||
|
||||
}
|
Reference in New Issue
Block a user