Class DataChannelHandler
java.lang.Object
org.xml.sax.helpers.DefaultHandler
org.apache.cayenne.configuration.xml.SAXNestedTagHandler
org.apache.cayenne.configuration.xml.NamespaceAwareNestedTagHandler
org.apache.cayenne.configuration.xml.VersionAwareHandler
org.apache.cayenne.configuration.xml.DataChannelHandler
- All Implemented Interfaces:
ContentHandler, DTDHandler, EntityResolver, ErrorHandler
- Since:
- 4.1
-
Field Summary
Fields inherited from class VersionAwareHandler
rootTagFields inherited from class NamespaceAwareNestedTagHandler
allowAllNamespaces, targetNamespaceFields inherited from class SAXNestedTagHandler
loaderContext, locator, parentHandlerModifier and TypeFieldDescriptionprotected LoaderContextprotected Locatorprotected ContentHandler -
Constructor Summary
ConstructorsConstructorDescriptionDataChannelHandler(XMLDataChannelDescriptorLoader xmlDataChannelDescriptorLoader, DataChannelDescriptor dataChannelDescriptor, LoaderContext loaderContext) -
Method Summary
Modifier and TypeMethodDescriptionprotected ContentHandlercreateChildTagHandler(String namespaceURI, String localName, String name, Attributes attributes) This method should be used to create nested handlers to process children elements.Methods inherited from class VersionAwareHandler
processElement, validateNamespace, validateVersionModifier and TypeMethodDescriptionprotected booleanprocessElement(String namespaceURI, String localName, Attributes attributes) Main method to process XML content.protected voidvalidateNamespace(String realNamespace) protected voidvalidateVersion(Attributes attributes, String[] supportedVersions) Methods inherited from class NamespaceAwareNestedTagHandler
characters, endElement, processCharData, setAllowAllNamespaces, setTargetNamespace, startElementModifier and TypeMethodDescriptionvoidcharacters(char[] ch, int start, int length) voidendElement(String namespaceURI, String localName, String qName) protected booleanprocessCharData(String localName, String data) voidsetAllowAllNamespaces(boolean allowAllNamespaces) voidsetTargetNamespace(String targetNamespace) final voidstartElement(String namespaceURI, String localName, String qName, Attributes attributes) This method directly called by SAX parser, do not override it directly, useSAXNestedTagHandler.processElement(String, String, Attributes)method instead to process content.Methods inherited from class SAXNestedTagHandler
beforeScopeEnd, getParentHandler, setDocumentLocator, stop, unexpectedTagMessageModifier and TypeMethodDescriptionprotected voidCallback method that is called before this handler pushed out of parsers stack.voidsetDocumentLocator(Locator locator) protected voidstop()protected StringunexpectedTagMessage(String tagFound, String... tagsExpected) Methods inherited from class DefaultHandler
endDocument, endPrefixMapping, error, fatalError, ignorableWhitespace, notationDecl, processingInstruction, resolveEntity, skippedEntity, startDocument, startPrefixMapping, unparsedEntityDecl, warningMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface ContentHandler
declaration
-
Constructor Details
-
DataChannelHandler
public DataChannelHandler(XMLDataChannelDescriptorLoader xmlDataChannelDescriptorLoader, DataChannelDescriptor dataChannelDescriptor, LoaderContext loaderContext)
-
-
Method Details
-
createChildTagHandler
protected ContentHandler createChildTagHandler(String namespaceURI, String localName, String name, Attributes attributes) Description copied from class:SAXNestedTagHandlerThis method should be used to create nested handlers to process children elements. This method should never returnnull.- Overrides:
createChildTagHandlerin classNamespaceAwareNestedTagHandler- Parameters:
namespaceURI- namespace for taglocalName- tag local name (i.e. w/o namespace prefix)name- tag full name (i.e. with namespace prefix)attributes- tag attributes- Returns:
- new handler to process child tag
-