Package org.exolab.adaptx.xslt.dom
Class Location
java.lang.Object
org.exolab.adaptx.xslt.dom.Location
A class for storing location information
- Version:
- $Revision: 3633 $ $Date: 2003-03-01 08:38:44 +0100 (Sat, 01 Mar 2003) $
- Author:
- Keith Visco
-
Constructor Summary
ConstructorsConstructorDescriptionLocation
(int line, int column) Creates a new Location with the given line and column numbers. -
Method Summary
Modifier and TypeMethodDescriptionint
Returns the column numberint
Returns the line number
-
Constructor Details
-
Location
public Location(int line, int column) Creates a new Location with the given line and column numbers.- Parameters:
line
- the line numbercolumn
- the column number
-
-
Method Details
-
getColumnNumber
public int getColumnNumber()Returns the column number- Returns:
- the column number
-
getLineNumber
public int getLineNumber()Returns the line number- Returns:
- the line number
-