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

constants group NodeAttribute

Constants
FINALIZED indicates that a node or property may not be changed or overridden in subsequent layers  
MANDATORY indicates that a set item may not be removed or replaced in subsequent layers.  
READONLY indicates that a node or property may not be changed in this or subsequent layer.  
FUSE indicates that contents shall be fused.  
MASK can be used to mask the node attributes from merged attributes  
Constants' Details
FINALIZED
const short FINALIZED = 256;
Description
indicates that a node or property may not be changed or overridden in subsequent layers
MANDATORY
const short MANDATORY = 512;
Description
indicates that a set item may not be removed or replaced in subsequent layers.
READONLY
const short READONLY = 1024;
Description
indicates that a node or property may not be changed in this or subsequent layer.
FUSE
const short FUSE = 2048;
Description
indicates that contents shall be fused.

Used in XLayerHandler::addOrReplaceNode, XLayerHandler::addOrReplaceNodeFromTemplate, XUpdateHandler::addOrReplaceNode, and XUpdateHandler::addOrReplaceNodeFromTemplate.

Since
OOo 2.0.3
MASK
const short MASK = 32512;
Description
can be used to mask the node attributes from merged attributes
Top of Page