Package org.jdom.input.sax
Interface SAXHandlerFactory
-
- All Known Implementing Classes:
DefaultSAXHandlerFactory
public interface SAXHandlerFactoryProvides SAXBuilder with SAXHandler instances to support SAX parsing. Users wanting to customise the way that JDOM processes the SAX events should override theSAXHandlerclass, and then use an implementation of this factory to feed instances of that new class to SAXBuilder.- See Also:
SAXHandler,org.jdom.input.sax
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SAXHandlercreateSAXHandler(JDOMFactory factory)Create a new SAXHandler instance for SAXBuilder to use.
-
-
-
Method Detail
-
createSAXHandler
SAXHandler createSAXHandler(JDOMFactory factory)
Create a new SAXHandler instance for SAXBuilder to use.- Parameters:
factory- TheJDOMFactoryto use for creating JDOM content.- Returns:
- a new instance of a SAXHandler (or subclass) class.
-
-