:: com :: sun :: star :: configuration :: backend ::

constants group SchemaAttribute
Description
These values are used to specify the behavior of a node or property in the schema.
Since
OOo 1.1.2
See also
NodeAttribute
During merging the values may be combined with node attributes.

Constants
REQUIRED indicates that a property value can't be null.  
LOCALIZED indicates that the content of the node or the value of the property may depend on the locale.  
EXTENSIBLE indicates that properties can be added to the node at runtime  
MASK can be used to mask the schema attributes from merged attributes  
Constants' Details
REQUIRED
const short REQUIRED = 1;
Description
indicates that a property value can't be null.
LOCALIZED
const short LOCALIZED = 2;
Description
indicates that the content of the node or the value of the property may depend on the locale.
EXTENSIBLE
const short EXTENSIBLE = 4;
Description
indicates that properties can be added to the node at runtime
MASK
const short MASK = 255;
Description
can be used to mask the schema attributes from merged attributes
Top of Page