| java.lang.Object org.xml.sax.helpers.DefaultHandler org.jfree.data.xml.RootHandler
All known Subclasses: org.jfree.data.xml.CategoryDatasetHandler, org.jfree.data.xml.PieDatasetHandler,
Constructor Summary | |
public | RootHandler() Creates a new handler. |
RootHandler | public RootHandler()(Code) | | Creates a new handler.
|
characters | public void characters(char[] ch, int start, int length) throws SAXException(Code) | | Receives some (or all) of the text in the current element.
Parameters: ch - character buffer. Parameters: start - the start index. Parameters: length - the length of the valid character data. throws: SAXException - for errors. |
getCurrentHandler | public DefaultHandler getCurrentHandler()(Code) | | Returns the handler at the top of the stack.
The handler. |
getSubHandlers | public Stack getSubHandlers()(Code) | | Returns the stack of sub handlers.
The sub-handler stack. |
popSubHandler | public DefaultHandler popSubHandler()(Code) | | Pops a sub-handler from the stack.
The sub-handler. |
pushSubHandler | public void pushSubHandler(DefaultHandler subhandler)(Code) | | Pushes a sub-handler onto the stack.
Parameters: subhandler - the sub-handler. |
Methods inherited from org.xml.sax.helpers.DefaultHandler | public void characters(char ch, int start, int length) throws SAXException(Code)(Java Doc) public void endDocument() throws SAXException(Code)(Java Doc) public void endElement(String uri, String localName, String qName) throws SAXException(Code)(Java Doc) public void endPrefixMapping(String prefix) throws SAXException(Code)(Java Doc) public void error(SAXParseException e) throws SAXException(Code)(Java Doc) public void fatalError(SAXParseException e) throws SAXException(Code)(Java Doc) public void ignorableWhitespace(char ch, int start, int length) throws SAXException(Code)(Java Doc) public void notationDecl(String name, String publicId, String systemId) throws SAXException(Code)(Java Doc) public void processingInstruction(String target, String data) throws SAXException(Code)(Java Doc) public InputSource resolveEntity(String publicId, String systemId) throws IOException, SAXException(Code)(Java Doc) public void setDocumentLocator(Locator locator)(Code)(Java Doc) public void skippedEntity(String name) throws SAXException(Code)(Java Doc) public void startDocument() throws SAXException(Code)(Java Doc) public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException(Code)(Java Doc) public void startPrefixMapping(String prefix, String uri) throws SAXException(Code)(Java Doc) public void unparsedEntityDecl(String name, String publicId, String systemId, String notationName) throws SAXException(Code)(Java Doc) public void warning(SAXParseException e) throws SAXException(Code)(Java Doc)
|
|
|