Uses of Interface
org.geotools.xsd.impl.Handler
-
Packages that use Handler Package Description org.geotools.kml.v22 org.geotools.wfs.v2_0.bindings org.geotools.xsd org.geotools.xsd.impl -
-
Uses of Handler in org.geotools.kml.v22
Methods in org.geotools.kml.v22 with parameters of type Handler Modifier and Type Method Description ElementHandler
KMLCustomSchemaHandlerFactory. createElementHandler(QName qName, Handler parent, ParserHandler parser)
-
Uses of Handler in org.geotools.wfs.v2_0.bindings
Methods in org.geotools.wfs.v2_0.bindings with parameters of type Handler Modifier and Type Method Description boolean
ParameterParserDelegate. canHandle(QName elementName, Attributes attributes, Handler handler, Handler parent)
boolean
QueryExpressionTextDelegate. canHandle(QName elementName, Attributes attributes, Handler handler, Handler parent)
-
Uses of Handler in org.geotools.xsd
Methods in org.geotools.xsd with parameters of type Handler Modifier and Type Method Description boolean
ParserDelegate. canHandle(QName elementName, Attributes attributes, Handler handler, Handler parent)
Determines if this delegate can handle the specified element name.boolean
XSDParserDelegate. canHandle(QName elementName, Attributes attributes, Handler handler, Handler parent)
-
Uses of Handler in org.geotools.xsd.impl
Subinterfaces of Handler in org.geotools.xsd.impl Modifier and Type Interface Description interface
AttributeHandler
Classes implementing this interace serve as handlers for attributes in an instance document as it is parsed.interface
DocumentHandler
interface
ElementHandler
Classes implementing this interface serve has handlers for elements in an instance document as it is parsed.Classes in org.geotools.xsd.impl that implement Handler Modifier and Type Class Description class
DelegatingHandler
class
DocumentHandlerImpl
class
ElementHandlerImpl
class
HandlerImpl
Fields in org.geotools.xsd.impl with type parameters of type Handler Modifier and Type Field Description protected Stack<Handler>
ParserHandler. handlers
execution stack *Methods in org.geotools.xsd.impl that return Handler Modifier and Type Method Description Handler
DelegatingHandler. createChildHandler(QName name)
Handler
DocumentHandlerImpl. createChildHandler(QName qName)
Handler
ElementHandlerImpl. createChildHandler(QName qName)
Handler
Handler. createChildHandler(QName qName)
Returns a handler for a component in the schema which is a child of this component.Handler
DelegatingHandler. getParentHandler()
Handler
DocumentHandlerImpl. getParentHandler()
Handler
ElementHandlerImpl. getParentHandler()
Handler
Handler. getParentHandler()
Methods in org.geotools.xsd.impl with parameters of type Handler Modifier and Type Method Description ElementHandler
HandlerFactory. createElementHandler(QName qName, Handler parent, ParserHandler parser)
Creates an element hander for a global or top level element in a document.ElementHandler
HandlerFactory. createElementHandler(XSDElementDeclaration element, Handler parent, ParserHandler parser)
Creates a handler for a particular element in a document.ElementHandler
HandlerFactoryImpl. createElementHandler(QName qName, Handler parent, ParserHandler parser)
ElementHandler
HandlerFactoryImpl. createElementHandler(XSDElementDeclaration element, Handler parent, ParserHandler parser)
void
DelegatingHandler. endChildHandler(Handler child)
void
DocumentHandlerImpl. endChildHandler(Handler child)
void
ElementHandlerImpl. endChildHandler(Handler child)
void
Handler. endChildHandler(Handler child)
Called when a child handler is finished, on the trailing edge of the child element.void
DelegatingHandler. startChildHandler(Handler child)
void
DocumentHandlerImpl. startChildHandler(Handler child)
void
ElementHandlerImpl. startChildHandler(Handler child)
void
Handler. startChildHandler(Handler child)
Called when a child handler is started, on the leading edge of the child element.Constructors in org.geotools.xsd.impl with parameters of type Handler Constructor Description ElementHandlerImpl(XSDElementDeclaration content, Handler parent, ParserHandler parser)
-