Package org.jfree.data.xml
Class KeyHandler
java.lang.Object
org.xml.sax.helpers.DefaultHandler
org.jfree.data.xml.KeyHandler
- All Implemented Interfaces:
DatasetTags
,ContentHandler
,DTDHandler
,EntityResolver
,ErrorHandler
public class KeyHandler extends DefaultHandler implements DatasetTags
A SAX handler for reading a key.
-
Field Summary
Fields inherited from interface org.jfree.data.xml.DatasetTags
CATEGORYDATASET_TAG, ITEM_TAG, KEY_TAG, PIEDATASET_TAG, SERIES_TAG, VALUE_TAG
-
Constructor Summary
Constructors Constructor Description KeyHandler(RootHandler rootHandler, ItemHandler itemHandler)
Creates a new handler. -
Method Summary
Modifier and Type Method Description void
characters(char[] ch, int start, int length)
Receives some (or all) of the text in the current element.void
endElement(String namespaceURI, String localName, String qName)
The end of an element.void
startElement(String namespaceURI, String localName, String qName, Attributes atts)
The start of an element.Methods inherited from class org.xml.sax.helpers.DefaultHandler
endDocument, endPrefixMapping, error, fatalError, ignorableWhitespace, notationDecl, processingInstruction, resolveEntity, setDocumentLocator, skippedEntity, startDocument, startPrefixMapping, unparsedEntityDecl, warning
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.xml.sax.ContentHandler
declaration
-
Constructor Details
-
KeyHandler
Creates a new handler.- Parameters:
rootHandler
- the root handler.itemHandler
- the item handler.
-
-
Method Details
-
startElement
public void startElement(String namespaceURI, String localName, String qName, Attributes atts) throws SAXExceptionThe start of an element.- Specified by:
startElement
in interfaceContentHandler
- Overrides:
startElement
in classDefaultHandler
- Parameters:
namespaceURI
- the namespace.localName
- the element name.qName
- the element name.atts
- the attributes.- Throws:
SAXException
- for errors.
-
endElement
The end of an element.- Specified by:
endElement
in interfaceContentHandler
- Overrides:
endElement
in classDefaultHandler
- Parameters:
namespaceURI
- the namespace.localName
- the element name.qName
- the element name.- Throws:
SAXException
- for errors.
-
characters
public void characters(char[] ch, int start, int length)Receives some (or all) of the text in the current element.- Specified by:
characters
in interfaceContentHandler
- Overrides:
characters
in classDefaultHandler
- Parameters:
ch
- character buffer.start
- the start index.length
- the length of the valid character data.
-