| org.geotools.xml.impl.HandlerFactory
All known Subclasses: org.geotools.xml.impl.HandlerFactoryImpl,
HandlerFactory | public interface HandlerFactory (Code) | | Factory used to create element handler objects during the processing of an
instance document.
author: Justin Deoliveira,Refractions Reserach Inc.,jdeolive@refractions.net |
createElementHandler | ElementHandler createElementHandler(QName qName, Handler parent, ParserHandler parser)(Code) | | Creates an element hander for a global or top level element in a document.
Parameters: qName - The qualified name identifying the element. Parameters: parent - The parent handler. Parameters: parser - The content handler driving the parser. A new element handler, or null if one could not be created. |
createElementHandler | ElementHandler createElementHandler(XSDElementDeclaration element, Handler parent, ParserHandler parser)(Code) | | Creates a handler for a particular element in a document.
Parameters: element - The schema component which represents the declarationof the element. Parameters: parent - The parent handler. Parameters: parser - The content handler driving the parser. A new element handler, or null if one could not be created. |
|
|