Interface ITreeWithDataAccessor<Node,ID,Data>

Type Parameters:
Node - Type of the tree nodes.
ID - Type of the ID of the nodes.
Data - Type of the data associated to each node.
All Superinterfaces:
ITreeAccessor<Node,ID>
All Known Subinterfaces:
ITreeWithDataAccessor<Node,ID,Data>
All Known Implementing Classes:
TreeAccessorWithDataNodeModel, TreeAccessorWithDataWorkflowNode

public interface ITreeWithDataAccessor<Node,ID,Data> extends ITreeAccessor<Node,ID>
Interface for accessing the children of tree nodes, together with the data associated with each tree node.
Since:
8.4.0
Author:
XIMA MEDIA GmbH
  • Method Details

    • getNodeData

      Data getNodeData(Node node)
      Parameters:
      node - Tree node for which to retrieve the data.
      Returns:
      The data associated with the tree node.