Package org.jfree.xml.parser.coretypes
Class GradientPaintReadHandler
- java.lang.Object
-
- org.jfree.xml.parser.AbstractXmlReadHandler
-
- org.jfree.xml.parser.coretypes.GradientPaintReadHandler
-
- All Implemented Interfaces:
XmlReadHandler
public class GradientPaintReadHandler extends AbstractXmlReadHandler
A SAX handler for reading aGradientPaint
from an XML element.
-
-
Constructor Summary
Constructors Constructor Description GradientPaintReadHandler()
Creates a new handler.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
doneParsing()
At the end of parsing the element, the gradient paint is constructed.protected XmlReadHandler
getHandlerForChild(String tagName, Attributes atts)
Returns the handler for a child element.Object
getObject()
Returns the gradient paint under construction.-
Methods inherited from class org.jfree.xml.parser.AbstractXmlReadHandler
characters, endElement, getRootHandler, getTagName, init, startElement, startParsing
-
-
-
-
Method Detail
-
getObject
public Object getObject()
Returns the gradient paint under construction.- Returns:
- the gradient paint.
-
getHandlerForChild
protected XmlReadHandler getHandlerForChild(String tagName, Attributes atts) throws SAXException, XmlReaderException
Returns the handler for a child element.- Overrides:
getHandlerForChild
in classAbstractXmlReadHandler
- Parameters:
tagName
- the tag name.atts
- the attributes.- Returns:
- the handler.
- Throws:
SAXException
- to indicate a parsing error.XmlReaderException
- if there is a reader error.
-
doneParsing
protected void doneParsing() throws XmlReaderException
At the end of parsing the element, the gradient paint is constructed.- Overrides:
doneParsing
in classAbstractXmlReadHandler
- Throws:
XmlReaderException
- if there is a parsing error.
-
-