org.jfree.data.xml
Class RootHandler
DefaultHandler
org.jfree.data.xml.RootHandler
- DatasetTags
A SAX handler that delegates work to sub-handlers.
void | characters(char[] ch, int start, int length) - Receives some (or all) of the text in the current element.
|
DefaultHandler | getCurrentHandler() - Returns the handler at the top of the stack.
|
Stack | getSubHandlers() - Returns the stack of sub handlers.
|
DefaultHandler | popSubHandler() - Pops a sub-handler from the stack.
|
void | pushSubHandler(DefaultHandler subhandler) - Pushes a sub-handler onto the stack.
|
characters
public void characters(char[] ch,
int start,
int length)
throws SAXException
Receives some (or all) of the text in the current element.
ch
- character buffer.start
- the start index.length
- the length of the valid character data.
getCurrentHandler
public DefaultHandler getCurrentHandler()
Returns the handler at the top of the stack.
getSubHandlers
public Stack getSubHandlers()
Returns the stack of sub handlers.
popSubHandler
public DefaultHandler popSubHandler()
Pops a sub-handler from the stack.
pushSubHandler
public void pushSubHandler(DefaultHandler subhandler)
Pushes a sub-handler onto the stack.
subhandler
- the sub-handler.