summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/xml
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-04-13 10:58:28 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-04-13 10:58:28 +0000
commitc2174359ec8ad8cbe7a5272f0ee23775a9ce4ef9 (patch)
treee5fa18fc5182d136439c9d28ce83a6b0289eaab5 /offapi/com/sun/star/xml
parent6ae35187b2752222ae56efb627b0b73da0e18d52 (diff)
INTEGRATION: CWS unopkg1 (1.2.42); FILE MERGED
2003/11/04 14:00:14 dbo 1.2.42.1: #i20304# docu, intro XNamespaceMapping
Diffstat (limited to 'offapi/com/sun/star/xml')
-rw-r--r--offapi/com/sun/star/xml/input/XAttributes.idl34
1 files changed, 17 insertions, 17 deletions
diff --git a/offapi/com/sun/star/xml/input/XAttributes.idl b/offapi/com/sun/star/xml/input/XAttributes.idl
index 97417c3658a5..941d5a7336f3 100644
--- a/offapi/com/sun/star/xml/input/XAttributes.idl
+++ b/offapi/com/sun/star/xml/input/XAttributes.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: XAttributes.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: obo $ $Date: 2003-09-04 09:10:37 $
+ * last change: $Author: hr $ $Date: 2004-04-13 11:58:28 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -79,30 +79,30 @@ interface XAttributes : com::sun::star::uno::XInterface
/** Gets attribute index passing a QName.
- @param QName
+ @param qName
QName
@return
- attribute index
+ attribute index or -1, if not found
*/
- long getIndexByQName( [in] string QName );
+ long getIndexByQName( [in] string qName );
/** Gets attribute index passing a namespace uid and a localname.
- @param Uid
+ @param uid
namespace uid
- @param LocalName
+ @param localName
localname
@return
- attribute index
+ attribute index or -1, if not found
*/
- long getIndexByUidName( [in] long Uid, [in] string LocalName );
+ long getIndexByUidName( [in] long uid, [in] string localName );
/** Gets the QName of an attribute.
@param nIndex
index
@return
- QName of attribute
+ QName of attribute or empty string, if invalid index
*/
string getQNameByIndex( [in] long nIndex );
@@ -111,7 +111,7 @@ interface XAttributes : com::sun::star::uno::XInterface
@param nIndex
index
@return
- namespace uid of attribute
+ namespace uid of attribute or -1, if invalid index
*/
long getUidByIndex( [in] long nIndex );
@@ -120,7 +120,7 @@ interface XAttributes : com::sun::star::uno::XInterface
@param nIndex
index
@return
- localname of attribute
+ localname of attribute or empty string, if invalid index
*/
string getLocalNameByIndex( [in] long nIndex );
@@ -129,20 +129,20 @@ interface XAttributes : com::sun::star::uno::XInterface
@param nIndex
index
@return
- value string
+ value string or empty string, if invalid index
*/
string getValueByIndex( [in] long nIndex );
/** For convenience: Gets the value of an attribute passing uid, localname.
- @param Uid
+ @param uid
namespace uid
- @param LocalName
+ @param localName
localname
@return
- value string
+ value string or empty string, if invalid uid/localname
*/
- string getValueByUidName( [in] long Uid, [in] string LocalName );
+ string getValueByUidName( [in] long uid, [in] string localName );
/** Gets the type of an attribute, if possible.