Package org.codehaus.commons.compiler
Class Location
java.lang.Object
org.codehaus.commons.compiler.Location
- All Implemented Interfaces:
Serializable
Represents the location of a character in a document, as defined by an optional file name, a
line number and a column number.
- See Also:
-
Field Details
-
NOWHERE
Representation of an unspecified location.b
-
-
Constructor Details
-
Location
- Parameters:
optionalFileName
- A human-readable indication where the document related to thisLocation
can be found
-
-
Method Details
-
getFileName
- Returns:
- The "file name" associated with this location, or
null
-
getLineNumber
public short getLineNumber()- Returns:
- The line number associated with this location, or -1
-
getColumnNumber
public short getColumnNumber()- Returns:
- The column number associated with this location, or -1
-
toString
Converts thisLocation
into an english text, likeFile Main.java, Line 23, Column 79
-