Package org.jfree.xml.parser.coretypes
Class RenderingHintsReadHandler
- java.lang.Object
-
- org.jfree.xml.parser.AbstractXmlReadHandler
-
- org.jfree.xml.parser.coretypes.RenderingHintsReadHandler
-
- All Implemented Interfaces:
XmlReadHandler
public class RenderingHintsReadHandler extends AbstractXmlReadHandler
A read handler that can parse the XML element for aRenderingHintscollection.
-
-
Constructor Summary
Constructors Constructor Description RenderingHintsReadHandler()Creates a new read handler.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddoneParsing()Done parsing.protected XmlReadHandlergetHandlerForChild(java.lang.String tagName, org.xml.sax.Attributes atts)Returns the handler for a child element.java.lang.ObjectgetObject()Returns the object for this element.protected voidstartParsing(org.xml.sax.Attributes attrs)Starts parsing.-
Methods inherited from class org.jfree.xml.parser.AbstractXmlReadHandler
characters, endElement, getRootHandler, getTagName, init, startElement
-
-
-
-
Constructor Detail
-
RenderingHintsReadHandler
public RenderingHintsReadHandler()
Creates a new read handler.
-
-
Method Detail
-
startParsing
protected void startParsing(org.xml.sax.Attributes attrs) throws org.xml.sax.SAXException
Starts parsing.- Overrides:
startParsingin classAbstractXmlReadHandler- Parameters:
attrs- the attributes.- Throws:
org.xml.sax.SAXException- never.
-
getHandlerForChild
protected XmlReadHandler getHandlerForChild(java.lang.String tagName, org.xml.sax.Attributes atts) throws XmlReaderException, org.xml.sax.SAXException
Returns the handler for a child element.- Overrides:
getHandlerForChildin classAbstractXmlReadHandler- Parameters:
tagName- the tag name.atts- the attributes.- Returns:
- the handler.
- Throws:
org.xml.sax.SAXException- if there is a parsing error.XmlReaderException- if there is a reader error.
-
doneParsing
protected void doneParsing() throws org.xml.sax.SAXException, XmlReaderException
Done parsing.- Overrides:
doneParsingin classAbstractXmlReadHandler- Throws:
org.xml.sax.SAXException- if there is a parsing error.XmlReaderException- if there is a reader error.
-
getObject
public java.lang.Object getObject() throws XmlReaderException
Returns the object for this element.- Returns:
- the object.
- Throws:
XmlReaderException- if there is a parsing error.
-
-