Package de.xima.fc.interfaces.workflow
Interface ITreeWithDataAccessor<TNode,TIdentifier,TNodeData>
-
- Type Parameters:
TNode- Type of the tree nodes.TIdentifier- Type of the ID of the nodes.TNodeData- Type of the data associated to each node.
- All Superinterfaces:
ITreeAccessor<TNode,TIdentifier>,ITreeWithDataAccessor<TNode,TIdentifier,TNodeData>
public interface ITreeWithDataAccessor<TNode,TIdentifier,TNodeData> extends ITreeWithDataAccessor<TNode,TIdentifier,TNodeData>
Deprecated.UseITreeWithDataAccessorinstead.Interface for accessing the children of tree nodes, together with the data associated with each tree node.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description TNodeDatagetNodeData(UUID taskUuid, TNode node)Deprecated.-
Methods inherited from interface de.xima.fc.common.tree.ITreeAccessor
getChildren, getId
-
-
-
-
Method Detail
-
getNodeData
TNodeData getNodeData(UUID taskUuid, TNode node)
Deprecated.- Specified by:
getNodeDatain interfaceITreeWithDataAccessor<TNode,TIdentifier,TNodeData>- Parameters:
taskUuid- UUID of the task to which the node belongs.node- Node for which to retrieve the data.- Returns:
- The data associated with the tree node.
-
-