summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorMohammed Abdul Azeem <azeemmysore@gmail.com>2017-06-19 18:25:17 +0530
committerMohammed Abdul Azeem <azeemmysore@gmail.com>2017-06-19 15:18:51 +0200
commitbef2bc59fa6656cbf13922cbc0e5347238156b5e (patch)
tree9c4ee6591b1dd5e4913cf214fd9c1ecbbeb6a477 /offapi
parent710a39414569995bd5a8631a948c939dc73bcef9 (diff)
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@gmail.com> Tested-by: Mohammed Abdul Azeem <azeemmysore@gmail.com>
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/xml/sax/XFastDocumentHandler.idl1
-rw-r--r--offapi/com/sun/star/xml/sax/XFastNamespaceHandler.idl14
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 );
+
};