Top   Module   Use   Manual   Index 

com :: sun :: star :: beans ::

constants group PropertyAttribute


Description
These values are used to specify the behavior of a Property .


Constants

const short MAYBEVOID = = 1;
Description
indicates that a property value can be void.

It does not mean that the type of the property is void!

const short BOUND = = 2;
Description
indicates that a PropertyChangeEvent will be fired to all registered XPropertyChangeListener s whenever the value of this property changes.
const short CONSTRAINED = = 4;
Description
indicates that a PropertyChangeEvent will be fired to all registered XVetoableChangeListener s whenever the value of this property changes.

This always implies that the property is bound , too.

const short TRANSIENT = = 8;
Description
indicates that the value of the property is not persistent.
const short READONLY = = 16;
Description
indicates that the value of the property is read-only.
const short MAYBEAMBIGUOUS = = 32;
Description
indicates that the value of the property can be ambiguous.
const short MAYBEDEFAULT = = 64;
Description
indicates that the property can be set to default.
const short REMOVEABLE = = 128;
Description
indicates that the property can be removed (i.e., by calling XPropertyContainer::removeProperty ).
const short REMOVABLE = = 128;
Description
same as PropertyAttribute::REMOVEABLE .
Top of Page