#include <IWORKXMLContext.h>
Public Member Functions | |
virtual | ~IWORKXMLContext ()=0 |
virtual void | startOfElement ()=0 |
Signalize the start of an element. | |
virtual void | attribute (int name, const char *value)=0 |
Process an attribute. | |
virtual IWORKXMLContextPtr_t | element (int name)=0 |
Create a context for parsing a child element. | |
virtual void | text (const char *value)=0 |
Process textual content of an element. | |
virtual void | CDATA (const char *value) |
Process CDATA content of an element. | |
virtual void | endOfElement ()=0 |
Signalize the end of an element. | |
|
pure virtual |
|
pure virtual |
Process an attribute.
Attributes are fed to the current element's context one by one.
Implemented in libetonyek::IWORKDiscardContext, libetonyek::IWORKXMLContextElement, and libetonyek::IWORKXMLContextEmpty.
|
virtual |
Process CDATA content of an element.
|
pure virtual |
Create a context for parsing a child element.
Implemented in libetonyek::IWORKDiscardContext, libetonyek::IWORKXMLContextEmpty, and libetonyek::IWORKXMLContextText.
Referenced by libetonyek::PAG1AnnotationElement::element().
|
pure virtual |
Signalize the end of an element.
Implemented in libetonyek::IWORKDiscardContext, and libetonyek::IWORKXMLContextMinimal.
|
pure virtual |
Signalize the start of an element.
This can be used if initialization of the context needs virtual function calls.
Implemented in libetonyek::IWORKDiscardContext, and libetonyek::IWORKXMLContextMinimal.
|
pure virtual |
Process textual content of an element.
This function can be called more than once if the element has mixed content.
Implemented in libetonyek::IWORKDiscardContext, libetonyek::IWORKXMLContextElement, and libetonyek::IWORKXMLContextEmpty.
Referenced by libetonyek::PAG1AnnotationElement::text().