Javolution 6.0.0 java
|
Public Member Functions | |
int | getLineNumber () |
int | getColumnNumber () |
int | getCharacterOffset () |
String | getPublicId () |
String | getSystemId () |
Provides information on the location of an event.
Definition at line 17 of file Location.java.
int javolution.xml.stream.Location.getCharacterOffset | ( | ) |
Return the byte or character offset into the input source this location is pointing to. If the input source is a file or a byte stream then this is the byte offset into that stream, but if the input source is a character media then the offset is the character offset. Returns -1 if there is no offset available.
Implemented in javolution.xml.internal.stream.XMLStreamReaderImpl.LocationImpl.
int javolution.xml.stream.Location.getColumnNumber | ( | ) |
Return the column number where the current event ends, returns -1 if none is available.
Implemented in javolution.xml.internal.stream.XMLStreamReaderImpl.LocationImpl.
Referenced by javolution.xml.stream.XMLStreamException.toString().
int javolution.xml.stream.Location.getLineNumber | ( | ) |
Return the line number where the current event ends, returns -1 if none is available.
Implemented in javolution.xml.internal.stream.XMLStreamReaderImpl.LocationImpl.
Referenced by javolution.xml.stream.XMLStreamException.toString().
String javolution.xml.stream.Location.getPublicId | ( | ) |
Returns the public ID of the XML
Implemented in javolution.xml.internal.stream.XMLStreamReaderImpl.LocationImpl.
String javolution.xml.stream.Location.getSystemId | ( | ) |
Returns the system ID of the XML
Implemented in javolution.xml.internal.stream.XMLStreamReaderImpl.LocationImpl.