| java.lang.Object com.quadcap.text.sax.Locator
Method Summary | |
public int | getColumnNumber() Return the column number where the current document event ends.
Note that this is the column number of the first
character after the text associated with the document
event. | public int | getLineNumber() Return the line number where the current document event ends. | public String | getPublicId() Return the public identifier for the current document event. | public String | getSystemId() Return the system identifier for the current document event. |
getColumnNumber | public int getColumnNumber()(Code) | | Return the column number where the current document event ends.
Note that this is the column number of the first
character after the text associated with the document
event. The first column in a line is position 1.
The column number, or -1 if none is available. See Also: Locator.getLineNumber |
getLineNumber | public int getLineNumber()(Code) | | Return the line number where the current document event ends.
Note that this is the line position of the first character
after the text associated with the document event.
The line number, or -1 if none is available. See Also: Locator.getColumnNumber |
getPublicId | public String getPublicId()(Code) | | Return the public identifier for the current document event.
This will be the public identifier
A string containing the public identifier, ornull if none is available. See Also: Locator.getSystemId |
getSystemId | public String getSystemId()(Code) | | Return the system identifier for the current document event.
If the system identifier is a URL, the parser must resolve it
fully before passing it to the application.
A string containing the system identifier, or nullif none is available. See Also: Locator.getPublicId |
|
|