| java.lang.Object dtx.DemoHandler
Method Summary | |
public void | characters(char ch, int start, int length) Print a message for character data. | public void | endDocument() Print a message for the end of the document. | public void | endElement(String name) Print a message for the end of an element. | public void | error(SAXParseException exception) Report all recoverable errors, and try to continue parsing. | public void | fatalError(SAXParseException exception) Report all fatal errors, and try to continue parsing. | public void | ignorableWhitespace(char ch, int start, int length) Print a message for ignorable whitespace. | public void | notationDecl(String name, String publicId, String systemId) Display notation declarations as they are reported. | public void | processingInstruction(String target, String data) Print a message for a processing instruction. | public InputSource | resolveEntity(String publicId, String systemId) Display requests for entity resolution.
The SAX parser will invoke this method to give the application
a chance to resolve entities. | public void | setDocumentLocator(Locator locator) Print a message when the parser provides a locator. | public void | startDocument() Print a message at the start of the document. | public void | startElement(String name, AttributeList attributes) Print a message for the start of an element. | public void | unparsedEntityDecl(String name, String publicId, String systemId, String notationName) Display unparsed entity declarations as they are reported. | public void | warning(SAXParseException exception) Report all warnings, and continue parsing. |
resolveEntity | public InputSource resolveEntity(String publicId, String systemId)(Code) | | Display requests for entity resolution.
The SAX parser will invoke this method to give the application
a chance to resolve entities. This implementation always
returns null, so that the parser will resolve the entity
itself.
See Also: org.xml.sax.EntityResolver.resolveEntity |
|
|