| java.lang.Object |
| ↳ |
org.xml.sax.helpers.DefaultHandler |
| |
↳ |
org.jfree.data.xml.ItemHandler |
Class Overview
A handler for reading key-value items.
Summary
|
[Expand]
Inherited Methods |
From class
org.xml.sax.helpers.DefaultHandler
|
void
|
characters(char[] arg0, int arg1, int arg2)
|
|
void
|
endDocument()
|
|
void
|
endElement(String arg0, String arg1, String arg2)
|
|
void
|
endPrefixMapping(String arg0)
|
|
void
|
error(SAXParseException arg0)
|
|
void
|
fatalError(SAXParseException arg0)
|
|
void
|
ignorableWhitespace(char[] arg0, int arg1, int arg2)
|
|
void
|
notationDecl(String arg0, String arg1, String arg2)
|
|
void
|
processingInstruction(String arg0, String arg1)
|
|
InputSource
|
resolveEntity(String arg0, String arg1)
|
|
void
|
setDocumentLocator(Locator arg0)
|
|
void
|
skippedEntity(String arg0)
|
|
void
|
startDocument()
|
|
void
|
startElement(String arg0, String arg1, String arg2, Attributes arg3)
|
|
void
|
startPrefixMapping(String arg0, String arg1)
|
|
void
|
unparsedEntityDecl(String arg0, String arg1, String arg2, String arg3)
|
|
void
|
warning(SAXParseException arg0)
|
|
From class
java.lang.Object
|
Object
|
clone()
|
|
boolean
|
equals(Object arg0)
|
|
void
|
finalize()
|
|
final
Class<?>
|
getClass()
|
|
int
|
hashCode()
|
|
final
void
|
notify()
|
|
final
void
|
notifyAll()
|
|
String
|
toString()
|
|
final
void
|
wait()
|
|
final
void
|
wait(long arg0, int arg1)
|
|
final
void
|
wait(long arg0)
|
|
From interface
org.xml.sax.ContentHandler
|
abstract
void
|
characters(char[] arg0, int arg1, int arg2)
|
|
abstract
void
|
endDocument()
|
|
abstract
void
|
endElement(String arg0, String arg1, String arg2)
|
|
abstract
void
|
endPrefixMapping(String arg0)
|
|
abstract
void
|
ignorableWhitespace(char[] arg0, int arg1, int arg2)
|
|
abstract
void
|
processingInstruction(String arg0, String arg1)
|
|
abstract
void
|
setDocumentLocator(Locator arg0)
|
|
abstract
void
|
skippedEntity(String arg0)
|
|
abstract
void
|
startDocument()
|
|
abstract
void
|
startElement(String arg0, String arg1, String arg2, Attributes arg3)
|
|
abstract
void
|
startPrefixMapping(String arg0, String arg1)
|
|
From interface
org.xml.sax.DTDHandler
|
From interface
org.xml.sax.EntityResolver
|
abstract
InputSource
|
resolveEntity(String arg0, String arg1)
|
|
From interface
org.xml.sax.ErrorHandler
|
abstract
void
|
error(SAXParseException arg0)
|
|
abstract
void
|
fatalError(SAXParseException arg0)
|
|
abstract
void
|
warning(SAXParseException arg0)
|
|
Public Constructors
public
ItemHandler
(RootHandler root, DefaultHandler parent)
Creates a new item handler.
Parameters
| root
| the root handler. |
| parent
| the parent handler.
|
Public Methods
public
void
endElement
(String namespaceURI, String localName, String qName)
Parameters
| namespaceURI
| the namespace. |
| localName
| the element name. |
| qName
| the element name.
|
Returns the key that has been read by the handler, or null.
public
Number
getValue
()
Returns the key that has been read by the handler, or null.
public
void
setValue
(Number value)
public
void
startElement
(String namespaceURI, String localName, String qName, Attributes atts)
Parameters
| namespaceURI
| the namespace. |
| localName
| the element name. |
| qName
| the element name. |
| atts
| the attributes. |