OSXMLAnyHandler Class Reference
Inheritance diagram for OSXMLAnyHandler:
Public Member Functions | |
virtual EXTXMLMETHOD int | startElement (const OSUTF8CHAR *const uri, const OSUTF8CHAR *const localname, const OSUTF8CHAR *const qname, const OSUTF8CHAR *const *attrs) |
Receive notification of the beginning of an element. | |
virtual EXTXMLMETHOD int | endElement (const OSUTF8CHAR *const uri, const OSUTF8CHAR *const localname, const OSUTF8CHAR *const qname) |
Receive notification of the end of an element. |
Detailed Description
Definition at line 38 of file rtSaxCppAny.h.
Member Function Documentation
virtual EXTXMLMETHOD int OSXMLAnyHandler::startElement | ( | const OSUTF8CHAR *const | uri, | |
const OSUTF8CHAR *const | localname, | |||
const OSUTF8CHAR *const | qname, | |||
const OSUTF8CHAR *const * | attrs | |||
) | [virtual] |
Receive notification of the beginning of an element.
The Parser will invoke this method at the beginning of every element in the XML document; there will be a corresponding endElement() event for every startElement() event (even when the element is empty). All of the element's content will be reported, in order, before the corresponding endElement() event.
- Parameters:
-
uri The URI of the asscioated namespace for this element localname The local part of the element name qname The QName of this element attrs The attributes name/value pairs attached to the element, if any.
- See also:
- endElement
Reimplemented from OSXMLDefaultHandler.
virtual EXTXMLMETHOD int OSXMLAnyHandler::endElement | ( | const OSUTF8CHAR *const | uri, | |
const OSUTF8CHAR *const | localname, | |||
const OSUTF8CHAR *const | qname | |||
) | [virtual] |
Receive notification of the end of an element.
The SAX parser will invoke this method at the end of every element in the XML document; there will be a corresponding startElement() event for every endElement() event (even when the element is empty).
- Parameters:
-
uri The URI of the asscioated namespace for this element localname The local part of the element name qname The QName of this element
Reimplemented from OSXMLDefaultHandler.
The documentation for this class was generated from the following file: