| java.lang.Object javax.xml.parsers.SAXParser com.sun.ukit.jaxp.Parser
Field Summary | |
final public static char | EOS The end of stream character. | final public static String | FAULT |
Constructor Summary | |
public | Parser(boolean nsaware) Constructor. |
EOS | final public static char EOS(Code) | | The end of stream character.
|
Parser | public Parser(boolean nsaware)(Code) | | Constructor.
|
getColumnNumber | public int getColumnNumber()(Code) | | Return the column number where the current document event ends.
Always returns -1 indicating the column number is not available. See Also: Parser.getLineNumber |
getLineNumber | public int getLineNumber()(Code) | | Return the line number where the current document event ends.
Always returns -1 indicating the line number is not available. See Also: Parser.getColumnNumber |
getPublicId | public String getPublicId()(Code) | | Return the public identifier for the current document event.
The return value is the public identifier of the document
entity or of the external parsed entity in which the markup
triggering the event appears.
A string containing the public identifier, ornull if none is available. See Also: Parser.getSystemId |
getSystemId | public String getSystemId()(Code) | | Return the system identifier for the current document event.
The return value is the system identifier of the document
entity or of the external parsed entity in which the markup
triggering the event appears.
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: Parser.getPublicId |
isNamespaceAware | public boolean isNamespaceAware()(Code) | | Indicates whether or not this parser is configured to
understand namespaces.
true if this parser is configured tounderstand namespaces; false otherwise. |
isValidating | public boolean isValidating()(Code) | | Indicates whether or not this parser is configured to validate
XML documents.
true if this parser is configured to validate XMLdocuments; false otherwise. |
|
|