From 77ca3618e6cdcd48e1b90f97c0ec236e77ee6f84 Mon Sep 17 00:00:00 2001 From: Michael Hönnig Date: Fri, 15 Dec 2000 15:22:48 +0000 Subject: lost documentation from src536 inserted --- udkapi/com/sun/star/beans/XPropertyContainer.idl | 27 +++++++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) (limited to 'udkapi/com/sun/star/beans/XPropertyContainer.idl') diff --git a/udkapi/com/sun/star/beans/XPropertyContainer.idl b/udkapi/com/sun/star/beans/XPropertyContainer.idl index 6efe07da5133..16da7262e04c 100644 --- a/udkapi/com/sun/star/beans/XPropertyContainer.idl +++ b/udkapi/com/sun/star/beans/XPropertyContainer.idl @@ -2,9 +2,9 @@ * * $RCSfile: XPropertyContainer.idl,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: mi $ $Date: 2000-12-11 16:09:35 $ + * last change: $Author: mi $ $Date: 2000-12-15 16:22:48 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -91,7 +91,7 @@ //============================================================================= - module com { module sun { module star { module beans { +module com { module sun { module star { module beans { //============================================================================= @@ -106,6 +106,18 @@ interface XPropertyContainer: com::sun::star::uno::XInterface // DocMerge from xml: method com::sun::star::beans::XPropertyContainer::addProperty /** adds a property to the object. + @param aName + specifies the name of the new property. + + @param xType + specifies the type of the new property. + + @throws PropertyExistException + if a property with the same name already exists. + + @throws IllegalTypeException + if the specified type is not allowed. + @see com::sun::star::beans::PropertyAttribute */ void addProperty( [in] string Name, @@ -119,6 +131,12 @@ interface XPropertyContainer: com::sun::star::uno::XInterface // DocMerge from xml: method com::sun::star::beans::XPropertyContainer::removeProperty /** removes a property from the object. + + @param aName + specified the name of the property. + + @throws UnknownPropertyException + if the property does not exist. */ void removeProperty( [in] string Name ) raises( com::sun::star::beans::UnknownPropertyException, @@ -132,6 +150,9 @@ interface XPropertyContainer: com::sun::star::uno::XInterface /*============================================================================= $Log: not supported by cvs2svn $ + Revision 1.5 2000/12/11 16:09:35 mi + documentation syntax fixed and some minor semantic documentation fixes + Revision 1.4 2000/11/08 12:28:20 mi moved from api -- cgit