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 String CONTENT
      This field contains an array of child nodes.
      static String MARKS
      This field contains an array of marks that decorate the node.
      static String TEXT
      This field contains a text value to be displayed, either as normal text content or as a placeholder for something else.
      static String VERSION
      This field is only used by the top-level doc node, to indicate the current ADF document structure version.
    • 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-level doc node, to indicate the current ADF document structure version.
        See Also:
        Constant Field Values