| java.lang.Object de.danet.an.util.sax.SAXEventLogger
Constructor Summary | |
public | SAXEventLogger(ContentHandler handler) Creates an instance of SAXEventLogger
with all attributes initialized to default values. |
Method Summary | |
public void | characters(char[] charArray, int start, int length) Describe characters method here. | public void | endDocument() Describe endDocument method here. | public void | endElement(String nsUri, String lname, String qname) Describe endElement method here. | public void | endPrefixMapping(String string) Describe endPrefixMapping method here. | public void | ignorableWhitespace(char[] charArray, int n, int n1) Describe ignorableWhitespace method here. | public void | processingInstruction(String string, String string1) Describe processingInstruction method here. | public void | setDocumentLocator(Locator locator) Describe setDocumentLocator method here. | public void | skippedEntity(String string) Describe skippedEntity method here. | public void | startDocument() Describe startDocument method here. | public void | startElement(String nsUri, String lname, String qname, Attributes attributes) Describe startElement method here. | public void | startPrefixMapping(String string, String string1) Describe startPrefixMapping method here. |
SAXEventLogger | public SAXEventLogger(ContentHandler handler)(Code) | | Creates an instance of SAXEventLogger
with all attributes initialized to default values.
Parameters: handler - the handler events are forwarded to |
characters | public void characters(char[] charArray, int start, int length) throws SAXException(Code) | | Describe characters method here.
Parameters: charArray - a char[] value Parameters: start - an int value Parameters: length - an int value exception: SAXException - if an error occurs |
endElement | public void endElement(String nsUri, String lname, String qname) throws SAXException(Code) | | Describe endElement method here.
Parameters: nsUri - a String value Parameters: lname - a String value Parameters: qname - a String value exception: SAXException - if an error occurs |
endPrefixMapping | public void endPrefixMapping(String string) throws SAXException(Code) | | Describe endPrefixMapping method here.
Parameters: string - a String value exception: SAXException - if an error occurs |
ignorableWhitespace | public void ignorableWhitespace(char[] charArray, int n, int n1) throws SAXException(Code) | | Describe ignorableWhitespace method here.
Parameters: charArray - a char[] value Parameters: n - an int value Parameters: n1 - an int value exception: SAXException - if an error occurs |
processingInstruction | public void processingInstruction(String string, String string1) throws SAXException(Code) | | Describe processingInstruction method here.
Parameters: string - a String value Parameters: string1 - a String value exception: SAXException - if an error occurs |
setDocumentLocator | public void setDocumentLocator(Locator locator)(Code) | | Describe setDocumentLocator method here.
Parameters: locator - a Locator value |
skippedEntity | public void skippedEntity(String string) throws SAXException(Code) | | Describe skippedEntity method here.
Parameters: string - a String value exception: SAXException - if an error occurs |
startElement | public void startElement(String nsUri, String lname, String qname, Attributes attributes) throws SAXException(Code) | | Describe startElement method here.
Parameters: nsUri - a String value Parameters: lname - a String value Parameters: qname - a String value Parameters: attributes - an Attributes value exception: SAXException - if an error occurs |
startPrefixMapping | public void startPrefixMapping(String string, String string1) throws SAXException(Code) | | Describe startPrefixMapping method here.
Parameters: string - a String value Parameters: string1 - a String value exception: SAXException - if an error occurs |
|
|