#include <Svcconf_Handler.h>
Inheritance diagram for ACEXML_Svcconf_Handler:
Public Methods | |
ACEXML_Svcconf_Handler (void) | |
virtual | ~ACEXML_Svcconf_Handler (void) |
virtual void | characters (const ACEXML_Char *ch, int start, int length ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
Receive notification of character data. More... | |
virtual void | endDocument (ACEXML_ENV_SINGLE_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
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_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
Receive notification of the end of an element. More... | |
virtual void | endPrefixMapping (const ACEXML_Char *prefix ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
End the scope of a prefix-URI mapping. More... | |
virtual void | ignorableWhitespace (const ACEXML_Char *ch, int start, int length ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
Receive notification of ignorable whitespace in element content. More... | |
virtual void | processingInstruction (const ACEXML_Char *target, const ACEXML_Char *data ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
Receive notification of a processing instruction. More... | |
virtual void | setDocumentLocator (ACEXML_Locator *) |
Receive an object for locating the origin of SAX document events. More... | |
virtual void | skippedEntity (const ACEXML_Char *name ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
Receive notification of a skipped entity. More... | |
virtual void | startDocument (ACEXML_ENV_SINGLE_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
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_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
Receive notification of the beginning of an element. More... | |
virtual void | startPrefixMapping (const ACEXML_Char *prefix, const ACEXML_Char *uri ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
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_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
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_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
Receive notification of an unparsed entity declaration event. More... | |
virtual ACEXML_InputSource * | resolveEntity (const ACEXML_Char *publicId, const ACEXML_Char *systemId ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
Allow the application to resolve external entities. More... | |
virtual void | error (ACEXML_SAXParseException &exception ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
Receive notification of a recoverable error. More... | |
virtual void | fatalError (ACEXML_SAXParseException &exception ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
Receive notification of a non-recoverable error. More... | |
virtual void | warning (ACEXML_SAXParseException &exception ACEXML_ENV_ARG_DECL) ACE_THROW_SPEC((ACEXML_SAXException)) |
Receive notification of a warning. More... | |
Protected Methods | |
int | get_stream_id (ACEXML_Attributes *alist ACEXML_ENV_ARG_DECL) |
Get the only attribute in <stream> or <streamdef>. More... | |
int | get_id (ACEXML_Attributes *alist ACEXML_ENV_ARG_DECL) |
Get the only attribute in <resume>, <suspend>, <remove>. More... | |
int | get_dynamic_attrs (ACEXML_Attributes *alist ACEXML_ENV_ARG_DECL) |
Get the dynamic tag attributes. More... | |
int | get_initializer_attrs (ACEXML_Attributes *alist ACEXML_ENV_ARG_DECL) |
Get the initializer tag attributes. More... | |
int | get_static_attrs (ACEXML_Attributes *alist ACEXML_ENV_ARG_DECL) |
Get the static tag attributes. More... | |
Private Attributes | |
int | in_stream_def_ |
We are parsing a stream definition. More... | |
int | in_module_ |
We are defining a steam module. More... | |
ACE_Parsed_Info | parsed_info_ |
ACE_Parsed_Info | stream_info_ |
This SAX event handler try to regenerate the XML document it reads with correct indentation.
|
|
|
|
|
Receive notification of character data.
Reimplemented from ACEXML_DefaultHandler. |
|
Receive notification of the end of a document.
Reimplemented from ACEXML_DefaultHandler. |
|
Receive notification of the end of an element.
Reimplemented from ACEXML_DefaultHandler. |
|
End the scope of a prefix-URI mapping.
Reimplemented from ACEXML_DefaultHandler. |
|
Receive notification of a recoverable error.
Reimplemented from ACEXML_DefaultHandler. |
|
Receive notification of a non-recoverable error.
Reimplemented from ACEXML_DefaultHandler. |
|
Get the dynamic tag attributes.
|
|
Get the only attribute in <resume>, <suspend>, <remove>.
|
|
Get the initializer tag attributes.
|
|
Get the static tag attributes.
|
|
Get the only attribute in <stream> or <streamdef>.
|
|
Receive notification of ignorable whitespace in element content.
Reimplemented from ACEXML_DefaultHandler. |
|
Receive notification of a notation declaration event.
Reimplemented from ACEXML_DefaultHandler. |
|
Receive notification of a processing instruction.
Reimplemented from ACEXML_DefaultHandler. |
|
Allow the application to resolve external entities.
Reimplemented from ACEXML_DefaultHandler. |
|
Receive an object for locating the origin of SAX document events.
Reimplemented from ACEXML_DefaultHandler. |
|
Receive notification of a skipped entity.
Reimplemented from ACEXML_DefaultHandler. |
|
Receive notification of the beginning of a document.
Reimplemented from ACEXML_DefaultHandler. |
|
Receive notification of the beginning of an element.
Reimplemented from ACEXML_DefaultHandler. |
|
Begin the scope of a prefix-URI Namespace mapping.
Reimplemented from ACEXML_DefaultHandler. |
|
Receive notification of an unparsed entity declaration event.
Reimplemented from ACEXML_DefaultHandler. |
|
Receive notification of a warning.
Reimplemented from ACEXML_DefaultHandler. |
|
We are defining a steam module.
|
|
We are parsing a stream definition.
|
|
|
|
|