Package org.geotools.xsd.impl
Class HandlerImpl
- Object
-
- HandlerImpl
-
- All Implemented Interfaces:
Handler
- Direct Known Subclasses:
DocumentHandlerImpl,ElementHandlerImpl
public abstract class HandlerImpl extends Object implements Handler
-
-
Constructor Summary
Constructors Constructor Description HandlerImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidendPrefixMapping(String prefix)Called when a prefix mapping is de-registred with ParserHandler.MutablePicoContainergetContext()voidsetContext(MutablePicoContainer context)voidstartPrefixMapping(String prefix, String uri)Called when a prefix mapping is registred with ParserHandler.-
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface Handler
createChildHandler, endChildHandler, getComponent, getParentHandler, getParseNode, getSchemaContent, startChildHandler
-
-
-
-
Method Detail
-
getContext
public MutablePicoContainer getContext()
- Specified by:
getContextin interfaceHandler- Returns:
- The context or container in which the instance is to be parsed in.
-
setContext
public void setContext(MutablePicoContainer context)
- Specified by:
setContextin interfaceHandler- Parameters:
context- The context in which the the instance is to be parsed in.
-
startPrefixMapping
public void startPrefixMapping(String prefix, String uri) throws SAXException
Description copied from interface:HandlerCalled when a prefix mapping is registred with ParserHandler.- Specified by:
startPrefixMappingin interfaceHandler- Parameters:
prefix- Namespace prefix.uri- Namespace uri.- Throws:
SAXException
-
endPrefixMapping
public void endPrefixMapping(String prefix) throws SAXException
Description copied from interface:HandlerCalled when a prefix mapping is de-registred with ParserHandler.- Specified by:
endPrefixMappingin interfaceHandler- Parameters:
prefix- Namespace prefix.- Throws:
SAXException
-
-