[Libreoffice-commits] core.git: offapi/com
Mohammed Abdul Azeem
azeemmysore at gmail.com
Mon Jun 19 13:19:17 UTC 2017
offapi/com/sun/star/xml/sax/XFastDocumentHandler.idl | 1 +
offapi/com/sun/star/xml/sax/XFastNamespaceHandler.idl | 14 +++++++++++++-
2 files changed, 14 insertions(+), 1 deletion(-)
New commits:
commit bef2bc59fa6656cbf13922cbc0e5347238156b5e
Author: Mohammed Abdul Azeem <azeemmysore at gmail.com>
Date: Mon Jun 19 18:25:17 2017 +0530
Add comments to sax APIs:
for processingInstruction method in XFastDocumentHandler
and for XFastNamespaceHandler API.
Change-Id: Ie0fd8ceb42e7ffbce041796b98edaa7f232dbb62
Reviewed-on: https://gerrit.libreoffice.org/38964
Reviewed-by: Mohammed Abdul Azeem <azeemmysore at gmail.com>
Tested-by: Mohammed Abdul Azeem <azeemmysore at gmail.com>
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 );
+
};
More information about the Libreoffice-commits
mailing list