diff options
-rw-r--r-- | offapi/com/sun/star/xml/sax/XFastDocumentHandler.idl | 1 | ||||
-rw-r--r-- | offapi/com/sun/star/xml/sax/XFastNamespaceHandler.idl | 14 |
2 files changed, 14 insertions, 1 deletions
diff --git a/offapi/com/sun/star/xml/sax/XFastDocumentHandler.idl b/offapi/com/sun/star/xml/sax/XFastDocumentHandler.idl index bdabf6d51701..27c68e221d22 100644 --- a/offapi/com/sun/star/xml/sax/XFastDocumentHandler.idl +++ b/offapi/com/sun/star/xml/sax/XFastDocumentHandler.idl @@ -51,6 +51,7 @@ interface XFastDocumentHandler: XFastContextHandler /** receives notification of a processing instruction. + @since LibreOffice 6.0 */ void processingInstruction( [in] string aTarget, [in] string aData ) raises( com::sun::star::xml::sax::SAXException ); diff --git a/offapi/com/sun/star/xml/sax/XFastNamespaceHandler.idl b/offapi/com/sun/star/xml/sax/XFastNamespaceHandler.idl index 3a109b91d5bf..c427325f0980 100644 --- a/offapi/com/sun/star/xml/sax/XFastNamespaceHandler.idl +++ b/offapi/com/sun/star/xml/sax/XFastNamespaceHandler.idl @@ -23,12 +23,24 @@ module com { module sun { module star { module xml { module sax { -/** @since LibreOffice 5.3 */ +/** Stores and manages namespace declarations of a sax + document parsed by XFastParser. + + @since LibreOffice 5.3 + */ interface XFastNamespaceHandler: com::sun::star::uno::XInterface { + + /** receives notification of namespace declarations + from a XFastParser. + */ void registerNamespace( [in] string NamespacePrefix, [in] string NamespaceURI ); + + /** retrieves the namespace URI of a namespace prefix + */ string getNamespaceURI( [in] string NamespacePrefix ); + }; |