Package net.ggtools.grand.graph
Interface GraphElementFactory
-
public interface GraphElementFactory
Interface to be implemented by classes creating graph elements (nodes and links).- Author:
- Christophe Labouisse
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Link
createLink(String linkName, Node startNode, Node endNode)
Creates a new link between 2 nodes.Node
createNode(String nodeName)
Creates a new Node.
-