Package com.atlassian.adf.model.node
Interface Node.Key
-
- All Superinterfaces:
Element.Key
- Enclosing interface:
- Node
public static interface Node.Key extends Element.Key
Constants used as property names in nodes.
-
-
Field Summary
Fields Modifier and Type Field Description static StringCONTENTThis field contains an array of child nodes.static StringMARKSThis field contains an array of marks that decorate the node.static StringTEXTThis field contains a text value to be displayed, either as normal text content or as a placeholder for something else.static StringVERSIONThis field is only used by the top-leveldocnode, to indicate the current ADF document structure version.-
Fields inherited from interface com.atlassian.adf.model.Element.Key
ATTRS, TYPE
-
-
-
-
Field Detail
-
CONTENT
static final String CONTENT
This field contains an array of child nodes. These are generally restricted to a specific node type, which this library enforces through the Java type system wherever possible.- See Also:
ContentNode, Constant Field Values
-
MARKS
static final String MARKS
This field contains an array of marks that decorate the node. These generally affect the node's presentation or (in the case of extension nodes) help connect the extension- See Also:
- Constant Field Values
-
TEXT
static final String TEXT
This field contains a text value to be displayed, either as normal text content or as a placeholder for something else.- See Also:
- Constant Field Values
-
VERSION
static final String VERSION
This field is only used by the top-leveldocnode, to indicate the current ADF document structure version.- See Also:
- Constant Field Values
-
-