| org.w3c.dom.DOMLocator
Method Summary | |
public int | getColumnNumber() The column number where the error occured, or -1 if there is no column
number available. | public Node | getErrorNode() The DOM Node where the error occured, or null if there is no Node
available. | public int | getLineNumber() The line number where the error occured, or -1 if there is no line
number available. | public int | getOffset() The byte or character offset into the input source, if we're parsing a
file or a byte stream then this will be the byte offset into that
stream, but if a character media is parsed then the offset will be
the character offset. | public String | getUri() The URI where the error occured, or null if there is no URI available. |
getColumnNumber | public int getColumnNumber()(Code) | | The column number where the error occured, or -1 if there is no column
number available.
|
getErrorNode | public Node getErrorNode()(Code) | | The DOM Node where the error occured, or null if there is no Node
available.
|
getLineNumber | public int getLineNumber()(Code) | | The line number where the error occured, or -1 if there is no line
number available.
|
getOffset | public int getOffset()(Code) | | The byte or character offset into the input source, if we're parsing a
file or a byte stream then this will be the byte offset into that
stream, but if a character media is parsed then the offset will be
the character offset. The value is -1 if there is no
offset available.
|
getUri | public String getUri()(Code) | | The URI where the error occured, or null if there is no URI available.
|
|
|