summaryrefslogtreecommitdiff
path: root/udkapi
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-06-09 12:14:35 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-06-09 12:14:35 +0000
commita402cc51831f7187710897f3d04e6800126f0d23 (patch)
tree15503b9262522d63910f3f3425f3f8b0f57ff0db /udkapi
parent9c74219ff3a0b331c406633188855a2c1a8a81a3 (diff)
INTEGRATION: CWS sb87 (1.6.94); FILE MERGED
2008/04/24 13:17:57 sb 1.6.94.2: RESYNC: (1.6-1.8); FILE MERGED 2008/04/23 12:49:55 fs 1.6.94.1: #i88633# +setName/setParameter
Diffstat (limited to 'udkapi')
-rw-r--r--udkapi/com/sun/star/uri/XVndSunStarScriptUrl.idl36
1 files changed, 35 insertions, 1 deletions
diff --git a/udkapi/com/sun/star/uri/XVndSunStarScriptUrl.idl b/udkapi/com/sun/star/uri/XVndSunStarScriptUrl.idl
index cbbcab6d38a6..bd6447b01878 100644
--- a/udkapi/com/sun/star/uri/XVndSunStarScriptUrl.idl
+++ b/udkapi/com/sun/star/uri/XVndSunStarScriptUrl.idl
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: XVndSunStarScriptUrl.idl,v $
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
* This file is part of OpenOffice.org.
*
@@ -31,6 +31,7 @@
#ifndef __com_sun_star_uri_XVndSunStarScriptUrl_idl__
#define __com_sun_star_uri_XVndSunStarScriptUrl_idl__
+#include <com/sun/star/lang/IllegalArgumentException.idl>
#include <com/sun/star/uno/XInterface.idl>
module com { module sun { module star { module uri {
@@ -75,6 +76,20 @@ published interface XVndSunStarScriptUrl: com::sun::star::uno::XInterface {
string getName();
/**
+ sets the name part of this URL.
+
+ @param name
+ specifies the non-escaped new name part of the URL.
+
+ @throws ::com::sun::star::lang::IllegalArgumentException
+ if <arg>name</arg> is empty
+
+ @since OOo 3.0
+ */
+ void setName([in] string name)
+ raises ( ::com::sun::star::lang::IllegalArgumentException );
+
+ /**
returns whether this URL has a parameter with a given key.
@param key
@@ -99,6 +114,25 @@ published interface XVndSunStarScriptUrl: com::sun::star::uno::XInterface {
empty <atom>string</atom>, an empty <atom>string</atom> is returned.
*/
string getParameter([in] string key);
+
+ /**
+ sets the value of a parameter with a given key.
+
+ @param key
+ a non-escaped key
+
+ @param value
+ the non-escaped value to be set for the parameter. If there already is a
+ parameter with this key, the value of its first appearance will be replaced.
+ Otherwise, a parameter with the given key/value will be appended.
+
+ @throws ::com::sun::star::lang::IllegalArgumentException
+ if <arg>key</arg> is empty
+
+ @since OOo 3.0
+ */
+ void setParameter( [in] string key, [in] string value )
+ raises ( ::com::sun::star::lang::IllegalArgumentException );
};
}; }; }; };