Main Page   Modules   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

ACEXML_DefaultHandler Class Reference

ACEXML_DefaultHandler. More...

#include "ACEXML/common/DefaultHandler.h"

Inheritance diagram for ACEXML_DefaultHandler:

Inheritance graph
[legend]
Collaboration diagram for ACEXML_DefaultHandler:

Collaboration graph
[legend]
List of all members.

Public Methods

 ACEXML_DefaultHandler (void)
 Default constructor. More...

virtual ~ACEXML_DefaultHandler (void)
 destructor. More...

virtual void characters (const ACEXML_Char *ch, int start, int length, ACEXML_Env &xmlenv)
 Receive notification of character data. More...

virtual void endDocument (ACEXML_Env &xmlenv)
 Receive notification of the end of a document. More...

virtual void endElement (const ACEXML_Char *namespaceURI, const ACEXML_Char *localName, const ACEXML_Char *qName, ACEXML_Env &xmlenv)
 Receive notification of the end of an element. More...

virtual void endPrefixMapping (const ACEXML_Char *prefix, ACEXML_Env &xmlenv)
 End the scope of a prefix-URI mapping. More...

virtual void ignorableWhitespace (const ACEXML_Char *ch, int start, int length, ACEXML_Env &xmlenv)
 Receive notification of ignorable whitespace in element content. More...

virtual void processingInstruction (const ACEXML_Char *target, const ACEXML_Char *data, ACEXML_Env &xmlenv)
 Receive notification of a processing instruction. More...

virtual void setDocumentLocator (ACEXML_Locator *locator, ACEXML_Env &xmlenv)
 Receive an object for locating the origin of SAX document events. More...

virtual void skippedEntity (const ACEXML_Char *name, ACEXML_Env &xmlenv)
 Receive notification of a skipped entity. More...

virtual void startDocument (ACEXML_Env &xmlenv)
 Receive notification of the beginning of a document. More...

virtual void startElement (const ACEXML_Char *namespaceURI, const ACEXML_Char *localName, const ACEXML_Char *qName, ACEXML_Attributes *atts, ACEXML_Env &xmlenv)
 Receive notification of the beginning of an element. More...

virtual void startPrefixMapping (const ACEXML_Char *prefix, const ACEXML_Char *uri, ACEXML_Env &xmlenv)
 Begin the scope of a prefix-URI Namespace mapping. More...

virtual void notationDecl (const ACEXML_Char *name, const ACEXML_Char *publicId, const ACEXML_Char *systemId, ACEXML_Env &xmlenv)
 Receive notification of a notation declaration event. More...

virtual void unparsedEntityDecl (const ACEXML_Char *name, const ACEXML_Char *publicId, const ACEXML_Char *systemId, const ACEXML_Char *notationName, ACEXML_Env &xmlenv)
 Receive notification of an unparsed entity declaration event. More...

virtual ACEXML_InputSourceresolveEntity (const ACEXML_Char *publicId, const ACEXML_Char *systemId, ACEXML_Env &xmlenv)
 Allow the application to resolve external entities. More...

virtual void error (ACEXML_SAXParseException &exception, ACEXML_Env &xmlenv)
 Receive notification of a recoverable error. More...

virtual void fatalError (ACEXML_SAXParseException &exception, ACEXML_Env &xmlenv)
 Receive notification of a non-recoverable error. More...

virtual void warning (ACEXML_SAXParseException &exception, ACEXML_Env &xmlenv)
 Receive notification of a warning. More...


Detailed Description

ACEXML_DefaultHandler.

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.


Constructor & Destructor Documentation

ACEXML_DefaultHandler::ACEXML_DefaultHandler void   
 

Default constructor.

ACEXML_DefaultHandler::~ACEXML_DefaultHandler void    [virtual]
 

destructor.


Member Function Documentation

void ACEXML_DefaultHandler::characters const ACEXML_Char   ch,
int    start,
int    length,
ACEXML_Env   xmlenv
[virtual]
 

Receive notification of character data.

Reimplemented from ACEXML_ContentHandler.

Reimplemented in ACEXML_Print_Handler, ACEXML_SAXPrint_Handler, and ACEXML_Svcconf_Handler.

void ACEXML_DefaultHandler::endDocument ACEXML_Env   xmlenv [virtual]
 

Receive notification of the end of a document.

Reimplemented from ACEXML_ContentHandler.

Reimplemented in ACEXML_Print_Handler, ACEXML_SAXPrint_Handler, and ACEXML_Svcconf_Handler.

void ACEXML_DefaultHandler::endElement const ACEXML_Char   namespaceURI,
const ACEXML_Char   localName,
const ACEXML_Char   qName,
ACEXML_Env   xmlenv
[virtual]
 

Receive notification of the end of an element.

Reimplemented from ACEXML_ContentHandler.

Reimplemented in ACEXML_Print_Handler, ACEXML_SAXPrint_Handler, and ACEXML_Svcconf_Handler.

void ACEXML_DefaultHandler::endPrefixMapping const ACEXML_Char   prefix,
ACEXML_Env   xmlenv
[virtual]
 

End the scope of a prefix-URI mapping.

Reimplemented from ACEXML_ContentHandler.

Reimplemented in ACEXML_Print_Handler, ACEXML_SAXPrint_Handler, and ACEXML_Svcconf_Handler.

void ACEXML_DefaultHandler::error ACEXML_SAXParseException   exception,
ACEXML_Env   xmlenv
[virtual]
 

Receive notification of a recoverable error.

Reimplemented from ACEXML_ErrorHandler.

Reimplemented in ACEXML_Print_Handler, ACEXML_SAXPrint_Handler, and ACEXML_Svcconf_Handler.

void ACEXML_DefaultHandler::fatalError ACEXML_SAXParseException   exception,
ACEXML_Env   xmlenv
[virtual]
 

Receive notification of a non-recoverable error.

Reimplemented from ACEXML_ErrorHandler.

Reimplemented in ACEXML_Print_Handler, ACEXML_SAXPrint_Handler, and ACEXML_Svcconf_Handler.

void ACEXML_DefaultHandler::ignorableWhitespace const ACEXML_Char   ch,
int    start,
int    length,
ACEXML_Env   xmlenv
[virtual]
 

Receive notification of ignorable whitespace in element content.

Reimplemented from ACEXML_ContentHandler.

Reimplemented in ACEXML_Print_Handler, ACEXML_SAXPrint_Handler, and ACEXML_Svcconf_Handler.

void ACEXML_DefaultHandler::notationDecl const ACEXML_Char   name,
const ACEXML_Char   publicId,
const ACEXML_Char   systemId,
ACEXML_Env   xmlenv
[virtual]
 

Receive notification of a notation declaration event.

Reimplemented from ACEXML_DTDHandler.

Reimplemented in ACEXML_Print_Handler, ACEXML_SAXPrint_Handler, and ACEXML_Svcconf_Handler.

void ACEXML_DefaultHandler::processingInstruction const ACEXML_Char   target,
const ACEXML_Char   data,
ACEXML_Env   xmlenv
[virtual]
 

Receive notification of a processing instruction.

Reimplemented from ACEXML_ContentHandler.

Reimplemented in ACEXML_Print_Handler, ACEXML_SAXPrint_Handler, and ACEXML_Svcconf_Handler.

ACEXML_InputSource * ACEXML_DefaultHandler::resolveEntity const ACEXML_Char   publicId,
const ACEXML_Char   systemId,
ACEXML_Env   xmlenv
[virtual]
 

Allow the application to resolve external entities.

Reimplemented from ACEXML_EntityResolver.

Reimplemented in ACEXML_Print_Handler, ACEXML_SAXPrint_Handler, and ACEXML_Svcconf_Handler.

void ACEXML_DefaultHandler::setDocumentLocator ACEXML_Locator   locator,
ACEXML_Env   xmlenv
[virtual]
 

Receive an object for locating the origin of SAX document events.

Reimplemented from ACEXML_ContentHandler.

Reimplemented in ACEXML_Print_Handler, ACEXML_SAXPrint_Handler, and ACEXML_Svcconf_Handler.

void ACEXML_DefaultHandler::skippedEntity const ACEXML_Char   name,
ACEXML_Env   xmlenv
[virtual]
 

Receive notification of a skipped entity.

Reimplemented from ACEXML_ContentHandler.

Reimplemented in ACEXML_Print_Handler, ACEXML_SAXPrint_Handler, and ACEXML_Svcconf_Handler.

void ACEXML_DefaultHandler::startDocument ACEXML_Env   xmlenv [virtual]
 

Receive notification of the beginning of a document.

Reimplemented from ACEXML_ContentHandler.

Reimplemented in ACEXML_Print_Handler, ACEXML_SAXPrint_Handler, and ACEXML_Svcconf_Handler.

void ACEXML_DefaultHandler::startElement const ACEXML_Char   namespaceURI,
const ACEXML_Char   localName,
const ACEXML_Char   qName,
ACEXML_Attributes   alist,
ACEXML_Env   xmlenv
[virtual]
 

Receive notification of the beginning of an element.

Reimplemented from ACEXML_ContentHandler.

Reimplemented in ACEXML_Print_Handler, ACEXML_SAXPrint_Handler, and ACEXML_Svcconf_Handler.

void ACEXML_DefaultHandler::startPrefixMapping const ACEXML_Char   prefix,
const ACEXML_Char   uri,
ACEXML_Env   xmlenv
[virtual]
 

Begin the scope of a prefix-URI Namespace mapping.

Reimplemented from ACEXML_ContentHandler.

Reimplemented in ACEXML_Print_Handler, ACEXML_SAXPrint_Handler, and ACEXML_Svcconf_Handler.

void ACEXML_DefaultHandler::unparsedEntityDecl const ACEXML_Char   name,
const ACEXML_Char   publicId,
const ACEXML_Char   systemId,
const ACEXML_Char   notationName,
ACEXML_Env   xmlenv
[virtual]
 

Receive notification of an unparsed entity declaration event.

Reimplemented from ACEXML_DTDHandler.

Reimplemented in ACEXML_Print_Handler, ACEXML_SAXPrint_Handler, and ACEXML_Svcconf_Handler.

void ACEXML_DefaultHandler::warning ACEXML_SAXParseException   exception,
ACEXML_Env   xmlenv
[virtual]
 

Receive notification of a warning.

Reimplemented from ACEXML_ErrorHandler.

Reimplemented in ACEXML_Print_Handler, ACEXML_SAXPrint_Handler, and ACEXML_Svcconf_Handler.


The documentation for this class was generated from the following files:
Generated on Thu Oct 10 17:27:42 2002 for ACEXML by doxygen1.2.13.1 written by Dimitri van Heesch, © 1997-2001