LibreOffice
LibreOffice 24.2 SDK API Reference
|
receives notification of sax document events from a XFastParser. More...
import"XFastContextHandler.idl";
Public Member Functions | |
void | startFastElement ([in] long Element, [in] XFastAttributeList Attribs) raises ( com::sun::star::xml::sax::SAXException ) |
receives notification of the beginning of an element . More... | |
void | startUnknownElement ([in] string Namespace, [in] string Name, [in] XFastAttributeList Attribs) raises ( com::sun::star::xml::sax::SAXException ) |
receives notification of the beginning of an unknown element . More... | |
void | endFastElement ([in] long Element) raises ( com::sun::star::xml::sax::SAXException ) |
receives notification of the end of a known element. More... | |
void | endUnknownElement ([in] string Namespace, [in] string Name) raises ( com::sun::star::xml::sax::SAXException ) |
receives notification of the end of a known element. More... | |
XFastContextHandler | createFastChildContext ([in] long Element, [in] XFastAttributeList Attribs) raises ( com::sun::star::xml::sax::SAXException ) |
receives notification of the beginning of a known child element. More... | |
XFastContextHandler | createUnknownChildContext ([in] string Namespace, [in] string Name, [in] XFastAttributeList Attribs) raises ( com::sun::star::xml::sax::SAXException ) |
receives notification of the beginning of an unknown child element . More... | |
void | characters ([in] string aChars) raises ( com::sun::star::xml::sax::SAXException ) |
receives notification of character data. More... | |
Public Member Functions inherited from XInterface | |
any | queryInterface ([in] type aType) |
queries for a new interface to an existing UNO object. More... | |
void | acquire () |
increases the reference counter by one. More... | |
void | release () |
decreases the reference counter by one. More... | |
receives notification of sax document events from a XFastParser.
void characters | ( | [in] string | aChars | ) | |
raises | ( | com::sun::star::xml::sax::SAXException | |||
) |
receives notification of character data.
XFastContextHandler createFastChildContext | ( | [in] long | Element, |
[in] XFastAttributeList | Attribs | ||
) | |||
raises | ( | com::sun::star::xml::sax::SAXException | |
) |
receives notification of the beginning of a known child element.
Element | contains the integer token from the XFastTokenHandler registered at the XFastParser. |
If the element has a namespace that was registered with the XFastParser, Element
contains the integer token of the elements local name from the XFastTokenHandler and the integer token of the namespace combined with an arithmetic or operation.
Attribs | Contains a XFastAttributeList to access the attributes from the element. |
XFastContextHandler createUnknownChildContext | ( | [in] string | Namespace, |
[in] string | Name, | ||
[in] XFastAttributeList | Attribs | ||
) | |||
raises | ( | com::sun::star::xml::sax::SAXException | |
) |
receives notification of the beginning of an unknown child element .
Namespace | contains the namespace url (not the prefix!) of this element. |
Name | contains the elements local name. |
Attribs | Contains a XFastAttributeList to access the attributes the element. |
void endFastElement | ( | [in] long | Element | ) | |
raises | ( | com::sun::star::xml::sax::SAXException | |||
) |
receives notification of the end of a known element.
void endUnknownElement | ( | [in] string | Namespace, |
[in] string | Name | ||
) | |||
raises | ( | com::sun::star::xml::sax::SAXException | |
) |
receives notification of the end of a known element.
void startFastElement | ( | [in] long | Element, |
[in] XFastAttributeList | Attribs | ||
) | |||
raises | ( | com::sun::star::xml::sax::SAXException | |
) |
receives notification of the beginning of an element .
Element | contains the integer token from the XFastTokenHandler registered at the XFastParser. |
If the element has a namespace that was registered with the XFastParser, Element
contains the integer token of the elements local name from the XFastTokenHandler and the integer token of the namespace combined with an arithmetic or operation.
Attribs | Contains a XFastAttributeList to access the attributes from the element. |
void startUnknownElement | ( | [in] string | Namespace, |
[in] string | Name, | ||
[in] XFastAttributeList | Attribs | ||
) | |||
raises | ( | com::sun::star::xml::sax::SAXException | |
) |
receives notification of the beginning of an unknown element .
Namespace | contains the namespace url (not the prefix!) of this element. |
Name | contains the elements local name. |
Attribs | Contains a XFastAttributeList to access the attributes from the element. |