summaryrefslogtreecommitdiff
path: root/udkapi/com/sun/star/beans
diff options
context:
space:
mode:
Diffstat (limited to 'udkapi/com/sun/star/beans')
-rw-r--r--udkapi/com/sun/star/beans/NamedValue.idl9
-rw-r--r--udkapi/com/sun/star/beans/PropertyAttribute.idl137
-rw-r--r--udkapi/com/sun/star/beans/StringPair.idl9
-rw-r--r--udkapi/com/sun/star/beans/XPropertyContainer.idl6
-rw-r--r--udkapi/com/sun/star/beans/makefile.mk7
5 files changed, 83 insertions, 85 deletions
diff --git a/udkapi/com/sun/star/beans/NamedValue.idl b/udkapi/com/sun/star/beans/NamedValue.idl
index b4e59a140..6ae95daeb 100644
--- a/udkapi/com/sun/star/beans/NamedValue.idl
+++ b/udkapi/com/sun/star/beans/NamedValue.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: NamedValue.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: mi $ $Date: 2002-12-11 13:30:05 $
+ * last change: $Author: mi $ $Date: 2003-01-21 13:16:09 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -88,5 +88,10 @@ struct NamedValue
/*=============================================================================
+ $Log: not supported by cvs2svn $
+ Revision 1.1 2001/09/14 09:35:41 fs
+ initial checkin - definition of a named value
+
+
=============================================================================*/
#endif
diff --git a/udkapi/com/sun/star/beans/PropertyAttribute.idl b/udkapi/com/sun/star/beans/PropertyAttribute.idl
index 3ff579279..c7ead73d6 100644
--- a/udkapi/com/sun/star/beans/PropertyAttribute.idl
+++ b/udkapi/com/sun/star/beans/PropertyAttribute.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: PropertyAttribute.idl,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: kso $ $Date: 2002-11-11 08:17:56 $
+ * last change: $Author: mi $ $Date: 2003-01-21 13:16:09 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -58,96 +58,85 @@
*
*
************************************************************************/
-#ifndef __com_sun_star_beans_PropertyAttribute_idl__
-#define __com_sun_star_beans_PropertyAttribute_idl__
-
-
-//=============================================================================
-
- module com { module sun { module star { module beans {
-
-//=============================================================================
-
+#ifndef __com_sun_star_beans_PropertyAttribute_idl__
+#define __com_sun_star_beans_PropertyAttribute_idl__
+
+
+//=============================================================================
+
+ module com { module sun { module star { module beans {
+
+//=============================================================================
+
/** These values are used to specify the behavior of a <type>Property</type>.
*/
constants PropertyAttribute
-{
- //-------------------------------------------------------------------------
-
- /** indicates that a property value can be void.
-
+{
+ //-------------------------------------------------------------------------
+
+ /** indicates that a property value can be void.
+
<p>It does not mean that the type of the property is void!
*/
- const short MAYBEVOID = 1;
-
- //-------------------------------------------------------------------------
-
- /** indicates that a <type>PropertyChangeEvent</type> will be fired
- to all registered <type>XPropertyChangeListener</type>s whenever the
+ const short MAYBEVOID = 1;
+
+ //-------------------------------------------------------------------------
+
+ /** indicates that a <type>PropertyChangeEvent</type> will be fired
+ to all registered <type>XPropertyChangeListener</type>s whenever the
value of this property changes.
*/
- const short BOUND = 2;
-
- //-------------------------------------------------------------------------
-
- /** indicates that a <type>PropertyChangeEvent</type> will be fired
- to all registered <type>XVetoableChangeListener</type>s whenever the
- value of this property changes.
-
+ const short BOUND = 2;
+
+ //-------------------------------------------------------------------------
+
+ /** indicates that a <type>PropertyChangeEvent</type> will be fired
+ to all registered <type>XVetoableChangeListener</type>s whenever the
+ value of this property changes.
+
<p>This always implies that the property is <em>bound</em>, too. </p>
*/
- const short CONSTRAINED = 4;
-
- //-------------------------------------------------------------------------
-
+ const short CONSTRAINED = 4;
+
+ //-------------------------------------------------------------------------
+
/** indicates that the value of the property is not persistent.
*/
- const short TRANSIENT = 8;
-
- //-------------------------------------------------------------------------
-
+ const short TRANSIENT = 8;
+
+ //-------------------------------------------------------------------------
+
/** indicates that the value of the property is read-only.
*/
- const short READONLY = 16;
-
- //-------------------------------------------------------------------------
-
+ const short READONLY = 16;
+
+ //-------------------------------------------------------------------------
+
/** indicates that the value of the property can be ambiguous.
*/
- const short MAYBEAMBIGUOUS = 32;
-
- //-------------------------------------------------------------------------
-
+ const short MAYBEAMBIGUOUS = 32;
+
+ //-------------------------------------------------------------------------
+
/** indicates that the property can be set to default.
*/
- const short MAYBEDEFAULT = 64;
-
- //-------------------------------------------------------------------------
-
- /** indicates that the property can be removed
+ const short MAYBEDEFAULT = 64;
+
+ //-------------------------------------------------------------------------
+
+ /** indicates that the property can be removed
(i.e., by calling <member>XPropertyContainer::removeProperty</member>).
*/
- const short REMOVEABLE = 128;
-
- //-------------------------------------------------------------------------
+ const short REMOVEABLE = 128;
+
+ //-------------------------------------------------------------------------
/** same as <const>PropertyAttribute::REMOVEABLE</const>.
*/
- const short REMOVABLE = 128;
-
- /** indicates that a property is optional.
-
- <p>This attribute is not of interest for concrete property
- implementations. It's needed for property specifications inside
- service specifications in UNOIDL.
-
- @see com::sun::star::reflection::PropertyDescription
- @see com::sun::star::reflection::XServiceTypeDescription
- */
- const short OPTIONAL = 256;
-};
-
-//=============================================================================
-
-}; }; }; };
-
-#endif
+ const short REMOVABLE = 128;
+};
+
+//=============================================================================
+
+}; }; }; };
+
+#endif
diff --git a/udkapi/com/sun/star/beans/StringPair.idl b/udkapi/com/sun/star/beans/StringPair.idl
index 676beb422..08d740a40 100644
--- a/udkapi/com/sun/star/beans/StringPair.idl
+++ b/udkapi/com/sun/star/beans/StringPair.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: StringPair.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: mi $ $Date: 2002-12-11 13:30:11 $
+ * last change: $Author: mi $ $Date: 2003-01-21 13:16:10 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -88,5 +88,10 @@ struct StringPair
/*=============================================================================
+ $Log: not supported by cvs2svn $
+ Revision 1.1 2001/09/14 09:38:25 fs
+ initial checkin - definition of a string pair
+
+
=============================================================================*/
#endif
diff --git a/udkapi/com/sun/star/beans/XPropertyContainer.idl b/udkapi/com/sun/star/beans/XPropertyContainer.idl
index f1f8cc9ad..820f107d1 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.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: mi $ $Date: 2003-01-16 08:05:30 $
+ * last change: $Author: mi $ $Date: 2003-01-21 13:16:10 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -98,7 +98,7 @@ module com { module sun { module star { module beans {
/** makes it possible to add and remove properties to or from an object.
<p>Some scripting engines cannot access properties directly when the
- property set is changed. Please use <member>XPropertySet::getPropertyValue</member>
+ property set is changed. Please use <member>XPropertySet::getPropertyValue</type>
etc. in this case. </p>
*/
interface XPropertyContainer: com::sun::star::uno::XInterface
diff --git a/udkapi/com/sun/star/beans/makefile.mk b/udkapi/com/sun/star/beans/makefile.mk
index a5494330a..4f040c08c 100644
--- a/udkapi/com/sun/star/beans/makefile.mk
+++ b/udkapi/com/sun/star/beans/makefile.mk
@@ -2,9 +2,9 @@
#
# $RCSfile: makefile.mk,v $
#
-# $Revision: 1.7 $
+# $Revision: 1.8 $
#
-# last change: $Author: mi $ $Date: 2002-09-02 11:22:46 $
+# last change: $Author: mi $ $Date: 2003-01-21 13:16:10 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@@ -81,12 +81,11 @@ IDLFILES=\
NotRemoveableException.idl\
Property.idl\
PropertyAttribute.idl\
- PropertySet.idl\
- PropertySetInfo.idl\
PropertyBag.idl\
PropertyChangeEvent.idl\
PropertyConcept.idl\
PropertyExistException.idl\
+ PropertySet.idl \
PropertySetInfoChange.idl\
PropertySetInfoChangeEvent.idl\
PropertyState.idl\