Kaydet (Commit) bef2bc59 authored tarafından Mohammed Abdul Azeem's avatar Mohammed Abdul Azeem

Add comments to sax APIs:

for processingInstruction method in XFastDocumentHandler
and for XFastNamespaceHandler API.

Change-Id: Ie0fd8ceb42e7ffbce041796b98edaa7f232dbb62
Reviewed-on: https://gerrit.libreoffice.org/38964Reviewed-by: 's avatarMohammed Abdul Azeem <azeemmysore@gmail.com>
Tested-by: 's avatarMohammed Abdul Azeem <azeemmysore@gmail.com>
üst 710a3941
...@@ -51,6 +51,7 @@ interface XFastDocumentHandler: XFastContextHandler ...@@ -51,6 +51,7 @@ interface XFastDocumentHandler: XFastContextHandler
/** receives notification of a processing instruction. /** receives notification of a processing instruction.
@since LibreOffice 6.0
*/ */
void processingInstruction( [in] string aTarget, [in] string aData ) void processingInstruction( [in] string aTarget, [in] string aData )
raises( com::sun::star::xml::sax::SAXException ); raises( com::sun::star::xml::sax::SAXException );
......
...@@ -23,12 +23,24 @@ ...@@ -23,12 +23,24 @@
module com { module sun { module star { module xml { module sax { 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 interface XFastNamespaceHandler: com::sun::star::uno::XInterface
{ {
/** receives notification of namespace declarations
from a XFastParser.
*/
void registerNamespace( [in] string NamespacePrefix, [in] string NamespaceURI ); void registerNamespace( [in] string NamespacePrefix, [in] string NamespaceURI );
/** retrieves the namespace URI of a namespace prefix
*/
string getNamespaceURI( [in] string NamespacePrefix ); string getNamespaceURI( [in] string NamespacePrefix );
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment