public class GraphElement extends Object
DependencyGraph. As a convention. incoming nodes are considered the ones that
need to be instnatiated and evaluated before the current nopde can be evaluated. Respectivly,
outgoing nodes are considered the ones that depend on this node| Modifier and Type | Field and Description |
|---|---|
List<String> |
Incoming
The names of the nodes that are connected with the current node with a directed edge, incoming
to the current node
|
String |
Name
The name of the node
|
List<String> |
Outgoing
The names of the nodes that are connected with the current node with a directed edge, outgoing
from the current node
|
| Constructor and Description |
|---|
GraphElement(String Name)
Creates a new instance
|
public String Name
public List<String> Incoming
public GraphElement(String Name)
Name - The name of the nodeCopyright © 2018. All Rights Reserved.