#include <ACEXML/common/DefaultHandler.h>
Inheritance diagram for ACEXML_DefaultHandler:
Public Member Functions | |
ACEXML_DefaultHandler (void) | |
virtual | ~ACEXML_DefaultHandler (void) |
virtual void | characters (const ACEXML_Char *ch, int start, int length ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
virtual void | endDocument (ACEXML_ENV_SINGLE_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
virtual void | endElement (const ACEXML_Char *namespaceURI, const ACEXML_Char *localName, const ACEXML_Char *qName ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
virtual void | endPrefixMapping (const ACEXML_Char *prefix ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
virtual void | ignorableWhitespace (const ACEXML_Char *ch, int start, int length ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
virtual void | processingInstruction (const ACEXML_Char *target, const ACEXML_Char *data ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
virtual void | setDocumentLocator (ACEXML_Locator *locator) |
virtual void | skippedEntity (const ACEXML_Char *name ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
virtual void | startDocument (ACEXML_ENV_SINGLE_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
virtual void | startElement (const ACEXML_Char *namespaceURI, const ACEXML_Char *localName, const ACEXML_Char *qName, ACEXML_Attributes *atts ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
virtual void | startPrefixMapping (const ACEXML_Char *prefix, const ACEXML_Char *uri ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
virtual void | notationDecl (const ACEXML_Char *name, const ACEXML_Char *publicId, const ACEXML_Char *systemId ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
virtual void | unparsedEntityDecl (const ACEXML_Char *name, const ACEXML_Char *publicId, const ACEXML_Char *systemId, const ACEXML_Char *notationName ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
virtual ACEXML_InputSource * | resolveEntity (const ACEXML_Char *publicId, const ACEXML_Char *systemId ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
virtual void | error (ACEXML_SAXParseException &exception ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
virtual void | fatalError (ACEXML_SAXParseException &exception ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
virtual void | warning (ACEXML_SAXParseException &exception ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
This class is available as a convenience base class for SAX2 applications: it provides default implementations for all of the callbacks in the four core SAX2 handler classes:
Application writers can extend this class when they need to implement only part of an interface; parser writers can instantiate this class to provide default handlers when the application has not supplied its own.
|
Default constructor. |
|
destructor. |
|
Receive notification of character data. Implements ACEXML_ContentHandler. Reimplemented in ACEXML_Print_Handler, ACEXML_SAXPrint_Handler, and Basic_Content_Tester. |
|
Receive notification of the end of a document. Implements ACEXML_ContentHandler. Reimplemented in ACEXML_Print_Handler, and ACEXML_SAXPrint_Handler. |
|
Receive notification of the end of an element. Implements ACEXML_ContentHandler. Reimplemented in ACEXML_Print_Handler, and ACEXML_SAXPrint_Handler. |
|
End the scope of a prefix-URI mapping. Implements ACEXML_ContentHandler. Reimplemented in ACEXML_Print_Handler, and ACEXML_SAXPrint_Handler. |
|
Receive notification of a recoverable error. Implements ACEXML_ErrorHandler. Reimplemented in ACEXML_Print_Handler, and ACEXML_SAXPrint_Handler. |
|
Receive notification of a non-recoverable error. Implements ACEXML_ErrorHandler. Reimplemented in ACEXML_Print_Handler, and ACEXML_SAXPrint_Handler. |
|
Receive notification of ignorable whitespace in element content. Implements ACEXML_ContentHandler. Reimplemented in ACEXML_Print_Handler, and ACEXML_SAXPrint_Handler. |
|
Receive notification of a notation declaration event. Implements ACEXML_DTDHandler. Reimplemented in ACEXML_Print_Handler, and ACEXML_SAXPrint_Handler. |
|
Receive notification of a processing instruction. Implements ACEXML_ContentHandler. Reimplemented in ACEXML_Print_Handler, and ACEXML_SAXPrint_Handler. |
|
Allow the application to resolve external entities. Implements ACEXML_EntityResolver. Reimplemented in ACEXML_Print_Handler, and ACEXML_SAXPrint_Handler. |
|
Receive an object for locating the origin of SAX document events. Implements ACEXML_ContentHandler. Reimplemented in ACEXML_Print_Handler, and ACEXML_SAXPrint_Handler. |
|
Receive notification of a skipped entity. Implements ACEXML_ContentHandler. Reimplemented in ACEXML_Print_Handler, and ACEXML_SAXPrint_Handler. |
|
Receive notification of the beginning of a document. Implements ACEXML_ContentHandler. Reimplemented in ACEXML_Print_Handler, and ACEXML_SAXPrint_Handler. |
|
Receive notification of the beginning of an element. Implements ACEXML_ContentHandler. Reimplemented in ACEXML_Print_Handler, and ACEXML_SAXPrint_Handler. |
|
Begin the scope of a prefix-URI Namespace mapping. Implements ACEXML_ContentHandler. Reimplemented in ACEXML_Print_Handler, and ACEXML_SAXPrint_Handler. |
|
Receive notification of an unparsed entity declaration event. Implements ACEXML_DTDHandler. Reimplemented in ACEXML_Print_Handler, and ACEXML_SAXPrint_Handler. |
|
Receive notification of a warning. Implements ACEXML_ErrorHandler. Reimplemented in ACEXML_Print_Handler, and ACEXML_SAXPrint_Handler. |