Package org.apache.fop.util
Interface ContentHandlerFactory
-
- All Known Implementing Classes:
AFPExtensionHandlerFactory,DOMBuilderContentHandlerFactory,PDFExtensionHandlerFactory,PSExtensionHandlerFactory,SVGDOMContentHandlerFactory,XMPContentHandlerFactory
public interface ContentHandlerFactoryFactory interface implemented by classes that can instantiate ContentHandler subclasses which parse a SAX stream into Java objects.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceContentHandlerFactory.ObjectBuiltListenerEventListener interface for objects which want to get notified when ContentHandler implementing the ObjectSource interface has finished parsing.static interfaceContentHandlerFactory.ObjectSourceInterface that ContentHandler implementations that parse Java objects from XML can implement to return these objects.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.xml.sax.ContentHandlercreateContentHandler()java.lang.String[]getSupportedNamespaces()
-
-
-
Method Detail
-
getSupportedNamespaces
java.lang.String[] getSupportedNamespaces()
- Returns:
- an array of supported namespaces.
-
createContentHandler
org.xml.sax.ContentHandler createContentHandler() throws org.xml.sax.SAXException- Returns:
- a new ContentHandler to handle a SAX stream
- Throws:
org.xml.sax.SAXException- if there's an error while preparing the ContentHandler
-
-