| java.lang.Object javolution.xml.sax.DefaultHandler
Method Summary | |
public void | characters(char ch, int start, int length) | public void | endDocument() | public void | endElement(CharArray namespaceURI, CharArray localName, CharArray qName) | public void | endPrefixMapping(CharArray prefix) | public void | error(SAXParseException e) Receives notification of recoverable parser error. | public void | fatalError(SAXParseException e) Reports a fatal XML parsing error. | public void | ignorableWhitespace(char ch, int start, int length) | public void | processingInstruction(CharArray target, CharArray data) | public void | setDocumentLocator(Locator locator) | public void | skippedEntity(CharArray name) | public void | startDocument() | public void | startElement(CharArray namespaceURI, CharArray localName, CharArray qName, Attributes atts) | final protected void | startElement(CharArray uri, CharArray localName, CharArray qName, org.xml.sax.Attributes atts) Generates compile-time error if startElement is not
correctly overriden. | public void | startPrefixMapping(CharArray prefix, CharArray uri) | public void | warning(SAXParseException e) Receives notification of a warning. |
characters | public void characters(char ch, int start, int length) throws SAXException(Code) | | |
fatalError | public void fatalError(SAXParseException e) throws SAXException(Code) | | Reports a fatal XML parsing error. The default behaviour is to throw
the specified exception.
Parameters: e - the error information encapsulated in a SAX parse exception. throws: org.xml.sax.SAXException - any SAX exception. |
ignorableWhitespace | public void ignorableWhitespace(char ch, int start, int length) throws SAXException(Code) | | |
setDocumentLocator | public void setDocumentLocator(Locator locator)(Code) | | |
startElement | final protected void startElement(CharArray uri, CharArray localName, CharArray qName, org.xml.sax.Attributes atts) throws SAXException(Code) | | Generates compile-time error if startElement is not
correctly overriden. This method generates a compile-error
"final method cannot be overridden" if
org.xml.sax.Attributes is used instead of
javolution.xml.sax.Attributes (common mistake).
Parameters: uri - the namespace URI, or an empty character sequence if theelement has no Namespace URI or if namespace processing is notbeing performed. Parameters: localName - the local name (without prefix), or an empty charactersequence if namespace processing is not being performed. Parameters: qName - the qualified name (with prefix), or an empty charactersequence if qualified names are not available. Parameters: atts - the attributes attached to the element. If there are noattributes, it shall be an empty Attributes object. throws: org.xml.sax.SAXException - any SAX exception. |
|
|