Package | Description |
---|---|
org.processmining.models.graphbased.directed.utils |
Modifier and Type | Method and Description |
---|---|
Node<T> |
Node.getParent() |
Modifier and Type | Method and Description |
---|---|
java.util.List<Node<T>> |
Node.getChildren()
Return the children of Node
|
Modifier and Type | Method and Description |
---|---|
void |
Node.addChild(Node<T> child)
Adds a child to the list of children for this Node
|
void |
Node.insertChildAt(int index,
Node<T> child)
Inserts a Node
|
void |
Node.setParent(Node<T> parent) |
Modifier and Type | Method and Description |
---|---|
void |
Node.setChildren(java.util.List<Node<T>> children)
Sets the children of a Node
|