LibreOffice
LibreOffice 24.2 SDK API Reference
|
This service helps parsing files by providing a SAX document handler interface for a SAX parsers. More...
import <SaxDocumentHandler.idl;
Exported Interfaces | |
interface | com::sun::star::xml::sax::XDocumentHandler |
to be passed to a SAX parser | |
interface | com::sun::star::lang::XInitialization |
to be used to pass XRoot object | |
Additional Inherited Members | |
![]() | |
void | startDocument () raises ( com::sun::star::xml::sax::SAXException ) |
receives notification of the beginning of a document. | |
void | endDocument () raises ( com::sun::star::xml::sax::SAXException ) |
receives notification of the end of a document. | |
void | startElement ([in] string aName, [in] com::sun::star::xml::sax::XAttributeList xAttribs) raises ( com::sun::star::xml::sax::SAXException ) |
receives notification of the beginning of an element . | |
void | endElement ([in] string aName) raises ( com::sun::star::xml::sax::SAXException ) |
receives notification of the end of an element. | |
void | characters ([in] string aChars) raises ( com::sun::star::xml::sax::SAXException ) |
receives notification of character data. | |
void | ignorableWhitespace ([in] string aWhitespaces) raises ( com::sun::star::xml::sax::SAXException ) |
receives notification of white space that can be ignored. | |
void | processingInstruction ([in] string aTarget, [in] string aData) raises ( com::sun::star::xml::sax::SAXException ) |
receives notification of a processing instruction. | |
void | setDocumentLocator ([in] com::sun::star::xml::sax::XLocator xLocator) raises ( com::sun::star::xml::sax::SAXException ) |
receives an object for locating the origin of SAX document events. | |
![]() | |
any | queryInterface ([in] type aType) |
queries for a new interface to an existing UNO object. | |
void | acquire () |
increases the reference counter by one. | |
void | release () |
decreases the reference counter by one. | |
![]() | |
void | initialize ([in] sequence< any > aArguments) raises ( com::sun::star::uno::Exception ) |
initializes the object. | |
This service helps parsing files by providing a SAX document handler interface for a SAX parsers.
You have to instantiate this service passing an XRoot instance.
interface com::sun::star::lang::XInitialization |
to be used to pass XRoot object
to be passed to a SAX parser