The org.xml.sax.ContentHandler interface specifies the core of the
SAX-2 event-handling mechanism. The table below is excerpted from the respective
JavaDoc interface description.
| Method Summary | |
|
|
characters(char[] ch,
int start, int length) Receive notification of character data. |
|
|
endDocument()
Receive notification of the end of a document. |
|
|
endElement(java.lang.String namespaceURI,
java.lang.String localName, java.lang.String qName) Receive notification of the end of an element. |
|
|
endPrefixMapping(java.lang.String prefix)
End the scope of a prefix-URI mapping. |
|
|
ignorableWhitespace(char[] ch,
int start, int length) Receive notification of ignorable whitespace in element content. |
|
|
processingInstruction(java.lang.String target,
java.lang.String data) Receive notification of a processing instruction. |
|
|
setDocumentLocator(Locator locator)
Receive an object for locating the origin of SAX document events. |
|
|
skippedEntity(java.lang.String name)
Receive notification of a skipped entity. |
|
|
startDocument()
Receive notification of the beginning of a document. |
|
|
startElement(java.lang.String namespaceURI,
java.lang.String localName, java.lang.String qName, Attributes atts)
Receive notification of the beginning of an element. |
|
|
startPrefixMapping(java.lang.String prefix,
java.lang.String uri) Begin the scope of a prefix-URI Namespace mapping. |