ACEXML
6.1.4
|
#include <XMLFilterImpl.h>
Public Member Functions | |
ACEXML_XMLFilterImpl (void) | |
ACEXML_XMLFilterImpl (ACEXML_XMLReader *parent) | |
virtual | ~ACEXML_XMLFilterImpl (void) |
virtual int | getFeature (const ACEXML_Char *name) |
virtual void * | getProperty (const ACEXML_Char *name) |
virtual void | parse (ACEXML_InputSource *input) |
virtual void | parse (const ACEXML_Char *systemId) |
virtual void | setFeature (const ACEXML_Char *name, int boolean_value) |
virtual void | setProperty (const ACEXML_Char *name, void *value) |
virtual ACEXML_XMLReader * | getParent (void) const |
virtual void | setParent (ACEXML_XMLReader *parent) |
virtual ACEXML_DTDHandler * | getDTDHandler (void) const |
virtual ACEXML_ContentHandler * | getContentHandler (void) const |
virtual ACEXML_EntityResolver * | getEntityResolver (void) const |
virtual ACEXML_ErrorHandler * | getErrorHandler (void) const |
virtual void | setDTDHandler (ACEXML_DTDHandler *handler) |
virtual void | setContentHandler (ACEXML_ContentHandler *handler) |
virtual void | setEntityResolver (ACEXML_EntityResolver *handler) |
virtual void | setErrorHandler (ACEXML_ErrorHandler *handler) |
virtual void | characters (const ACEXML_Char *ch, size_t start, size_t length) |
virtual void | endDocument (void) |
virtual void | endElement (const ACEXML_Char *namespaceURI, const ACEXML_Char *localName, const ACEXML_Char *qName) |
virtual void | endPrefixMapping (const ACEXML_Char *prefix) |
virtual void | ignorableWhitespace (const ACEXML_Char *ch, int start, int length) |
virtual void | processingInstruction (const ACEXML_Char *target, const ACEXML_Char *data) |
virtual void | setDocumentLocator (ACEXML_Locator *locator) |
virtual void | skippedEntity (const ACEXML_Char *name) |
virtual void | startDocument (void) |
virtual void | startElement (const ACEXML_Char *namespaceURI, const ACEXML_Char *localName, const ACEXML_Char *qName, ACEXML_Attributes *atts) |
virtual void | startPrefixMapping (const ACEXML_Char *prefix, const ACEXML_Char *uri) |
virtual void | notationDecl (const ACEXML_Char *name, const ACEXML_Char *publicId, const ACEXML_Char *systemId) |
virtual void | unparsedEntityDecl (const ACEXML_Char *name, const ACEXML_Char *publicId, const ACEXML_Char *systemId, const ACEXML_Char *notationName) |
virtual ACEXML_InputSource * | resolveEntity (const ACEXML_Char *publicId, const ACEXML_Char *systemId) |
virtual void | error (ACEXML_SAXParseException &exception) |
virtual void | fatalError (ACEXML_SAXParseException &exception) |
virtual void | warning (ACEXML_SAXParseException &exception) |
Public Member Functions inherited from ACEXML_ContentHandler | |
virtual | ~ACEXML_ContentHandler (void) |
Public Member Functions inherited from ACEXML_DTDHandler | |
virtual | ~ACEXML_DTDHandler (void) |
Public Member Functions inherited from ACEXML_EntityResolver | |
virtual | ~ACEXML_EntityResolver (void) |
Public Member Functions inherited from ACEXML_ErrorHandler | |
virtual | ~ACEXML_ErrorHandler (void) |
Protected Member Functions | |
int | setupParser (void) |
This class is designed to sit between an XMLReader and the client application's event handlers. By default, it does nothing but pass requests up to the reader and events on to the handlers unmodified, but subclasses can override specific methods to modify the event stream or the configuration requests as they pass through.
ACEXML_XMLFilterImpl::ACEXML_XMLFilterImpl | ( | void | ) |
Default constructor. Create with no parent.
ACEXML_XMLFilterImpl::ACEXML_XMLFilterImpl | ( | ACEXML_XMLReader * | parent | ) |
Construct an XML filter with the specified parent.
|
virtual |
Destructor.
|
virtual |
Receive notification of character data.
Implements ACEXML_ContentHandler.
|
virtual |
Receive notification of the end of a document.
Implements ACEXML_ContentHandler.
|
virtual |
Receive notification of the end of an element.
Implements ACEXML_ContentHandler.
|
virtual |
End the scope of a prefix-URI mapping.
Implements ACEXML_ContentHandler.
|
virtual |
Receive notification of a recoverable error.
Implements ACEXML_ErrorHandler.
|
virtual |
Receive notification of a non-recoverable error.
Implements ACEXML_ErrorHandler.
|
virtual |
Return the current content handler.
Implements ACEXML_XMLReader.
|
virtual |
Return the current DTD handler.
Implements ACEXML_XMLReader.
|
virtual |
Return the current entity resolver.
Implements ACEXML_XMLReader.
|
virtual |
Return the current error handler.
Implements ACEXML_XMLReader.
|
virtual |
Look up the value of a feature. This method allows programmers to check whether a specific feature has been activated in the parser.
Implements ACEXML_XMLReader.
|
virtual |
Get the parent reader.
Implements ACEXML_XMLFilter.
|
virtual |
Look up the value of a property.
Implements ACEXML_XMLReader.
|
virtual |
Receive notification of ignorable whitespace in element content.
Implements ACEXML_ContentHandler.
|
virtual |
Receive notification of a notation declaration event.
Implements ACEXML_DTDHandler.
|
virtual |
Parse an XML document.
Implements ACEXML_XMLReader.
|
virtual |
Parse an XML document from a system identifier (URI).
Implements ACEXML_XMLReader.
|
virtual |
Receive notification of a processing instruction.
Implements ACEXML_ContentHandler.
|
virtual |
Allow the application to resolve external entities.
Implements ACEXML_EntityResolver.
|
virtual |
Allow an application to register a content event handler.
Implements ACEXML_XMLReader.
|
virtual |
Receive an object for locating the origin of SAX document events.
Implements ACEXML_ContentHandler.
|
virtual |
Allow an application to register a DTD event handler.
Implements ACEXML_XMLReader.
|
virtual |
Allow an application to register an entity resolver.
Implements ACEXML_XMLReader.
|
virtual |
Allow an application to register an error event handler.
Implements ACEXML_XMLReader.
|
virtual |
Activating or deactivating a feature.
Implements ACEXML_XMLReader.
|
virtual |
Set the parent reader.
Implements ACEXML_XMLFilter.
|
virtual |
Set the value of a property.
Implements ACEXML_XMLReader.
|
protected |
|
virtual |
Receive notification of a skipped entity.
Implements ACEXML_ContentHandler.
|
virtual |
Receive notification of the beginning of a document.
Implements ACEXML_ContentHandler.
|
virtual |
Receive notification of the beginning of an element.
Implements ACEXML_ContentHandler.
|
virtual |
Begin the scope of a prefix-URI Namespace mapping.
Implements ACEXML_ContentHandler.
|
virtual |
Receive notification of an unparsed entity declaration event.
Implements ACEXML_DTDHandler.
|
virtual |
Receive notification of a warning.
Implements ACEXML_ErrorHandler.
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |