Package com.aquima.web.api.model.dmn
Class DmnDecisionTreeModel
- java.lang.Object
-
- com.aquima.web.api.model.dmn.DmnDecisionTreeModel
-
public class DmnDecisionTreeModel extends Object
Tree wrapper forDmnDecisionModel
objects that represents a decision requirements graph.- Since:
- 9.3
- Author:
- T. Middeldorp
-
-
Constructor Summary
Constructors Constructor Description DmnDecisionTreeModel()
Default constructorDmnDecisionTreeModel(DmnDecisionModel rootNode)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DmnDecisionModel
getRootNode()
Gets the root node of the tree.void
setRootNode(DmnDecisionModel rootNode)
Sets the root node of the tree.
-
-
-
Constructor Detail
-
DmnDecisionTreeModel
public DmnDecisionTreeModel()
Default constructor
-
DmnDecisionTreeModel
public DmnDecisionTreeModel(DmnDecisionModel rootNode)
-
-
Method Detail
-
getRootNode
public DmnDecisionModel getRootNode()
Gets the root node of the tree.- Returns:
- Root decision node, never null.
-
setRootNode
public void setRootNode(DmnDecisionModel rootNode)
Sets the root node of the tree.- Parameters:
rootNode
- The rootNode, not null.
-
-