| org.jfree.xml.parser.XmlReadHandler
All known Subclasses: org.jfree.xml.parser.AbstractXmlReadHandler,
XmlReadHandler | public interface XmlReadHandler (Code) | | A handler for reading an XML element.
|
Method Summary | |
public void | characters(char[] ch, int start, int length) This method is called to process the character data between element tags. | public void | endElement(String tagName) This method is called at the end of an element. | public Object | getObject() Returns the object for this element or null, if this element does
not create an object. | public void | init(RootXmlReadHandler rootHandler, String tagName) Initialise. | public void | startElement(String tagName, Attributes attrs) This method is called at the start of an element. |
characters | public void characters(char[] ch, int start, int length) throws SAXException(Code) | | This method is called to process the character data between element tags.
Parameters: ch - the character buffer. Parameters: start - the start index. Parameters: length - the length. throws: SAXException - if there is a parsing error. |
init | public void init(RootXmlReadHandler rootHandler, String tagName)(Code) | | Initialise.
Parameters: rootHandler - the root handler. Parameters: tagName - the tag name. |
|
|