diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2013-06-25 22:18:34 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2013-06-25 22:18:34 +0200 |
commit | 5470bea93e7047ef5742466246487e17813cf5ed (patch) | |
tree | 6b4628bbe96c5d461de95fe4ac59c2979309ea7c /udkapi/com/sun | |
parent | 3e58bf2cddb7d725f32d3f26c87e7417cd6e652a (diff) |
Fix idl descriptions
Change-Id: I119cd010f6f54d428017ea59016b5fdd91c6d4da
Diffstat (limited to 'udkapi/com/sun')
-rw-r--r-- | udkapi/com/sun/star/container/XMap.idl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/udkapi/com/sun/star/container/XMap.idl b/udkapi/com/sun/star/container/XMap.idl index 2a191a683d29..b4f25fb82f82 100644 --- a/udkapi/com/sun/star/container/XMap.idl +++ b/udkapi/com/sun/star/container/XMap.idl @@ -59,7 +59,7 @@ interface XMap /** clears the map, removing all key-value pairs from it. - @throws ::com::sun::star::beans::NoSupportException + @throws ::com::sun::star::lang::NoSupportException if the map is not mutable. */ void clear() @@ -113,7 +113,7 @@ interface XMap @throws ::com::sun::star::beans::IllegalTypeException if the given key is not of a type which is accepted by the map - @throws ::com::sun::star::beans::IllegalArgumentException + @throws ::com::sun::star::lang::IllegalArgumentException if the given key is not supported to be put into the map. It's up to the service implementing the <code>XMap</code> interface to specify which special values are not supported. For instances, implementations might decide to not allow `VOID` keys, or @@ -149,7 +149,7 @@ interface XMap For instances, implementations might decide to not allow `VOID` keys or values, or to reject <code>Double.NaN</code> (<em>not a number</em>) to due its problematic behavior with respect to equality. - @throws ::com::sun::star::beans::NoSupportException + @throws ::com::sun::star::lang::NoSupportException if the map does not support putting new mappings into it */ any put( [in] any Key, [in] any Value ) @@ -172,7 +172,7 @@ interface XMap supported. For instances, implementations might decide to not allow `VOID` keys, or to reject <code>Double.NaN</code> (<em>not a number</em>) to due its problematic behavior with respect to equality. - @throws ::com::sun::star::beans::NoSupportException + @throws ::com::sun::star::lang::NoSupportException if the map does not support removing mappings @throws ::com::sun::star::container::NoSuchElementException if there is no value associated with the given key |