Package org.apache.xmlbeans.impl.jam
Interface JSourcePosition
-
- All Known Subinterfaces:
MSourcePosition
- All Known Implementing Classes:
SourcePositionImpl
public interface JSourcePositionDescribes a specific point in a source file.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetColumn()Returns the text column number for this source position, or -1 if it is not known.intgetLine()Returns the text line number for this source position, or -1 if it is not known.java.net.URIgetSourceURI()Returns the URI of the source file, or null if it is not known.
-
-
-
Method Detail
-
getColumn
int getColumn()
Returns the text column number for this source position, or -1 if it is not known.
-
getLine
int getLine()
Returns the text line number for this source position, or -1 if it is not known.
-
getSourceURI
java.net.URI getSourceURI()
Returns the URI of the source file, or null if it is not known.
-
-