summaryrefslogtreecommitdiffstats
path: root/offapi/com/sun/star/xml
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-05-01 00:26:55 +0200
committerMichael Stahl <mstahl@redhat.com>2013-06-04 12:01:08 +0200
commit392706b5f743b2f989ba5a120bbb31c2296bf902 (patch)
tree6d37555b819fb1c482106f29c0aede2a121ae819 /offapi/com/sun/star/xml
parent*api: doxygen complains about lonely "." being list marker (diff)
downloadcore-392706b5f743b2f989ba5a120bbb31c2296bf902.tar.gz
core-392706b5f743b2f989ba5a120bbb31c2296bf902.zip
*api: fix loads of badly documented parameters
Change-Id: Ifcfdcc1aee5f45745ab17d83f69c2cf293b58196
Diffstat (limited to 'offapi/com/sun/star/xml')
-rw-r--r--offapi/com/sun/star/xml/crypto/XUriBinding.idl7
-rw-r--r--offapi/com/sun/star/xml/input/XRoot.idl2
-rw-r--r--offapi/com/sun/star/xml/sax/XFastAttributeList.idl2
-rw-r--r--offapi/com/sun/star/xml/sax/XFastContextHandler.idl4
-rw-r--r--offapi/com/sun/star/xml/xpath/XXPathAPI.idl4
5 files changed, 10 insertions, 9 deletions
diff --git a/offapi/com/sun/star/xml/crypto/XUriBinding.idl b/offapi/com/sun/star/xml/crypto/XUriBinding.idl
index d62c595b0562..f0e42176601b 100644
--- a/offapi/com/sun/star/xml/crypto/XUriBinding.idl
+++ b/offapi/com/sun/star/xml/crypto/XUriBinding.idl
@@ -42,16 +42,17 @@ interface XUriBinding : com::sun::star::uno::XInterface
* Sets the XInputStream interface for a uri.
*
* @param uri the uri to bind
- * @param aStream the XInputStream to be binded
+ * @param InputStream the XInputStream to be bound
*/
- void setUriBinding([in] string uri, [in] com::sun::star::io::XInputStream aInputStream)
+ void setUriBinding([in] string uri,
+ [in] com::sun::star::io::XInputStream InputStream)
raises( com::sun::star::uno::Exception );
/**
* Gets the XInputStream interface for a uri.
*
* @param uri the uri whose binding is to get
- * @return the XInputStream binded with the uri
+ * @return the XInputStream bound with the uri
*/
com::sun::star::io::XInputStream getUriBinding([in] string uri)
raises( com::sun::star::uno::Exception );
diff --git a/offapi/com/sun/star/xml/input/XRoot.idl b/offapi/com/sun/star/xml/input/XRoot.idl
index d9be774d15bb..8efb1a140a19 100644
--- a/offapi/com/sun/star/xml/input/XRoot.idl
+++ b/offapi/com/sun/star/xml/input/XRoot.idl
@@ -76,7 +76,7 @@ interface XRoot : com::sun::star::uno::XInterface
namespace uid of element
@param localName
local name of element
- @param xAattributes
+ @param xAttributes
attributes of element
*/
XElement startRootElement(
diff --git a/offapi/com/sun/star/xml/sax/XFastAttributeList.idl b/offapi/com/sun/star/xml/sax/XFastAttributeList.idl
index 8bcd45062347..509bcf823061 100644
--- a/offapi/com/sun/star/xml/sax/XFastAttributeList.idl
+++ b/offapi/com/sun/star/xml/sax/XFastAttributeList.idl
@@ -96,7 +96,7 @@ interface XFastAttributeList: com::sun::star::uno::XInterface
@returns
If the attribute is available it returns the integer token of the value
from the attribute or FastToken::Invalid.
- If not the value of <param>Default</param> is returned.
+ If not the value of <code>Default</code> is returned.
*/
long getOptionalValueToken( [in] long Token, [in] long Default );
diff --git a/offapi/com/sun/star/xml/sax/XFastContextHandler.idl b/offapi/com/sun/star/xml/sax/XFastContextHandler.idl
index a9996af32195..3acc13525499 100644
--- a/offapi/com/sun/star/xml/sax/XFastContextHandler.idl
+++ b/offapi/com/sun/star/xml/sax/XFastContextHandler.idl
@@ -47,7 +47,7 @@ interface XFastContextHandler: com::sun::star::uno::XInterface
registered at the XFastParser.<br>
If the element has a namespace that was registered with the
- XFastParser, <param>Element</param> contains the integer
+ XFastParser, <code>Element</code> contains the integer
token of the elements local name from the XFastTokenHandler
and the integer token of the namespace combined with an arithmetic
<b>or</b> operation.
@@ -96,7 +96,7 @@ interface XFastContextHandler: com::sun::star::uno::XInterface
registered at the XFastParser.
<br>If the element has a namespace that was registered with the
- XFastParser, <param>Element</param> contains the
+ XFastParser, <code>Element</code> contains the
integer token of the elements local name from the
XFastTokenHandler and the integer token of the
namespace combined with an arithmetic <b>or</b> operation.
diff --git a/offapi/com/sun/star/xml/xpath/XXPathAPI.idl b/offapi/com/sun/star/xml/xpath/XXPathAPI.idl
index 12f7c75f3f53..e400abff1487 100644
--- a/offapi/com/sun/star/xml/xpath/XXPathAPI.idl
+++ b/offapi/com/sun/star/xml/xpath/XXPathAPI.idl
@@ -134,7 +134,7 @@ interface XXPathAPI : com::sun::star::uno::XInterface
*/
com::sun::star::xml::dom::XNodeList selectNodeListNS(
[in] com::sun::star::xml::dom::XNode contextNode,
- [in] string str,
+ [in] string expr,
[in] com::sun::star::xml::dom::XNode namespaceNode)
raises( com::sun::star::xml::xpath::XPathException );
@@ -176,7 +176,7 @@ interface XXPathAPI : com::sun::star::uno::XInterface
*/
com::sun::star::xml::dom::XNode selectSingleNodeNS(
[in] com::sun::star::xml::dom::XNode contextNode,
- [in] string str,
+ [in] string expr,
[in] com::sun::star::xml::dom::XNode namespaceNode)
raises( com::sun::star::xml::xpath::XPathException );