![]() |
Quadcap Embeddable Server |
Inheritance diagram for com.quadcap.text.sax.Handler:

Definition at line 66 of file Handler.java.
Public Member Functions | |
| Handler () throws SAXException | |
| Construct a new parser. | |
| void | parse (Reader r, Object context) throws SAXException |
| Parse the specified file the context of the specified web application. | |
| SAX parser callback to handle XML Parser errors. | |
| SAX parser callback to handle XML Parser fatal errors. | |
| SAX parser callback to handle XML Parser fatal errors. | |
| void | characters (char[] ch, int start, int length) throws SAXException |
| SAX parser callback to handle character data found in the parsed document. | |
| void | endDocument () |
| SAX parser callback function that is called when the end of the document is reached. | |
| void | endElement (String name) throws SAXException |
| SAX parser callback function called for the end of an element. | |
| void | ignorableWhitespace (char[] ch, int start, int length) |
| SAX parser callback for ignorable whitespace. | |
| void | processingInstruction (String target, String data) |
| SAX parser callback for processing instructions. | |
| void | setDocumentLocator (Locator locator) |
| SAX parser callback used to receive a document locator. | |
| void | startDocument () |
| SAX parser callback for document start. | |
| void | startElement (String name, AttributeList attrs) throws SAXException |
| SAX parser callback for the start of an element. | |
Protected Member Functions | |
| final String | consumeAny (String name) throws SAXException |
| final String | consume (String name) throws SAXException |
| final String | consumeData () |
Protected Attributes | |
| Object | context = null |
| Hashtable | env = new Hashtable() |
| StringBuffer | data = new StringBuffer("") |
Package Attributes | |
| Parser | parser |
| Locator | locator |
|
|
Construct a new parser.
Definition at line 77 of file Handler.java. References com.quadcap.text.sax.Handler.parser, com.quadcap.text.sax.Parser.setDocumentHandler(), com.quadcap.text.sax.Parser.setErrorHandler(), and com.quadcap.util.ConfigString.toString(). |
|
|
SAX parser callback to handle character data found in the parsed document.
Definition at line 162 of file Handler.java. References com.quadcap.text.sax.Handler.characters(), and com.quadcap.text.sax.Handler.data. Referenced by com.quadcap.text.sax.Handler.characters(). |
|
|
Definition at line 193 of file Handler.java. References com.quadcap.text.sax.Handler.consume(). Referenced by com.quadcap.text.sax.Handler.consume(). |
|
|
Definition at line 185 of file Handler.java. References com.quadcap.text.sax.Handler.consumeAny(), and com.quadcap.text.sax.Handler.env. Referenced by com.quadcap.text.sax.Handler.consumeAny(). |
|
|
Definition at line 201 of file Handler.java. References com.quadcap.text.sax.Handler.data. |
|
|
SAX parser callback function that is called when the end of the document is reached. This implementation does nothing. Definition at line 172 of file Handler.java. |
|
|
SAX parser callback function called for the end of an element.
Definition at line 181 of file Handler.java. References com.quadcap.text.sax.Handler.endElement(). Referenced by com.quadcap.text.sax.Handler.endElement(). |
|
|
SAX parser callback to handle XML Parser errors. This implementation just prints them to System.err.
Definition at line 120 of file Handler.java. References com.quadcap.text.sax.Handler.error(). Referenced by com.quadcap.text.sax.Handler.error(). |
|
|
SAX parser callback to handle XML Parser fatal errors. This implementation just prints them to System.err.
Definition at line 132 of file Handler.java. References com.quadcap.text.sax.Handler.fatalError(). Referenced by com.quadcap.text.sax.Handler.fatalError(). |
|
||||||||||||||||
|
SAX parser callback for ignorable whitespace. We just ignore it
Definition at line 214 of file Handler.java. References com.quadcap.text.sax.Handler.ignorableWhitespace(). Referenced by com.quadcap.text.sax.Handler.ignorableWhitespace(). |
|
|
Parse the specified file the context of the specified web application.
Definition at line 99 of file Handler.java. References com.quadcap.text.sax.Handler.context, com.quadcap.text.sax.Parser.parse(), com.quadcap.text.sax.Handler.parse(), and com.quadcap.text.sax.Handler.parser. Referenced by com.quadcap.text.sax.Handler.parse(). |
|
||||||||||||
|
SAX parser callback for processing instructions. This implementation does nothing.
Definition at line 224 of file Handler.java. References com.quadcap.text.sax.Handler.processingInstruction(). Referenced by com.quadcap.text.sax.Handler.processingInstruction(). |
|
|
SAX parser callback used to receive a document locator.
Definition at line 232 of file Handler.java. References com.quadcap.text.sax.Handler.setDocumentLocator(). Referenced by com.quadcap.text.sax.Handler.setDocumentLocator(). |
|
|
SAX parser callback for document start. This implementation does nothing. Definition at line 240 of file Handler.java. |
|
|
SAX parser callback for the start of an element.
Definition at line 251 of file Handler.java. References com.quadcap.text.sax.Handler.data, and com.quadcap.text.sax.Handler.startElement(). Referenced by com.quadcap.text.sax.Handler.startElement(). |
|
|
SAX parser callback to handle XML Parser fatal errors. This implementation just prints them to System.err.
Definition at line 144 of file Handler.java. References com.quadcap.text.sax.Handler.warning(). Referenced by com.quadcap.text.sax.Handler.warning(). |
|
|
Definition at line 67 of file Handler.java. Referenced by com.quadcap.text.sax.Handler.parse(). |
|
|
Definition at line 69 of file Handler.java. Referenced by com.quadcap.text.sax.Handler.characters(), com.quadcap.text.sax.Handler.consumeData(), and com.quadcap.text.sax.Handler.startElement(). |
|
|
Definition at line 68 of file Handler.java. Referenced by com.quadcap.text.sax.Handler.consumeAny(). |
|
|
Definition at line 72 of file Handler.java. |
|
|
Definition at line 71 of file Handler.java. Referenced by com.quadcap.text.sax.Handler.Handler(), and com.quadcap.text.sax.Handler.parse(). |