LibreOffice
LibreOffice 24.2 SDK API Reference
|
Capsule around an XML element. More...
import"XElement.idl";
Public Member Functions | |
XElement | getParent () |
Gets the parent context. More... | |
string | getLocalName () |
Gets the local name of this element. More... | |
long | getUid () |
Gets the namespace uid of this element. More... | |
XAttributes | getAttributes () |
Gets the attributes of this element. More... | |
XElement | startChildElement ([in] long uid, [in] string localName, [in] XAttributes xAttributes) raises (com::sun::star::xml::sax::SAXException) |
Called upon each occurring child element. More... | |
void | characters ([in] string chars) raises (com::sun::star::xml::sax::SAXException) |
Called upon retrieval of characters. More... | |
void | ignorableWhitespace ([in] string whitespace) raises (com::sun::star::xml::sax::SAXException) |
Receives notification of white space that can be ignored. More... | |
void | processingInstruction ([in] string target, [in] string data) raises (com::sun::star::xml::sax::SAXException) |
Receives notification of a processing instruction. More... | |
void | endElement () raises (com::sun::star::xml::sax::SAXException) |
Receives notification of element closing. 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... | |
Capsule around an XML element.
void characters | ( | [in] string | chars | ) | |
raises | ( | com::sun::star::xml::sax::SAXException | |||
) |
Called upon retrieval of characters.
chars | characters |
void endElement | ( | ) | ||
raises | ( | com::sun::star::xml::sax::SAXException | ||
) |
Receives notification of element closing.
XAttributes getAttributes | ( | ) |
Gets the attributes of this element.
string getLocalName | ( | ) |
Gets the local name of this element.
XElement getParent | ( | ) |
Gets the parent context.
long getUid | ( | ) |
Gets the namespace uid of this element.
void ignorableWhitespace | ( | [in] string | whitespace | ) | |
raises | ( | com::sun::star::xml::sax::SAXException | |||
) |
Receives notification of white space that can be ignored.
whitespace | white space characters |
void processingInstruction | ( | [in] string | target, |
[in] string | data | ||
) | |||
raises | ( | com::sun::star::xml::sax::SAXException | |
) |
Receives notification of a processing instruction.
target | target |
data | data |
XElement startChildElement | ( | [in] long | uid, |
[in] string | localName, | ||
[in] XAttributes | xAttributes | ||
) | |||
raises | ( | com::sun::star::xml::sax::SAXException | |
) |
Called upon each occurring child element.
uid | namespace uid of element |
localName | local name of element |
xAttributes | attributes of element |