@Experimental
public interface Node<N extends Node<N>>
An abstraction over directed, acyclic graph models.
 
 Examples of such models are Version / Versions or
 Commit / Commits.
- Author:
- Lukas Eder
- 
Method Summary
- 
Method Details- 
idThe ID of the node, unique within the graph.
- 
messageThe message associated with the node.
- 
rootThe root node of the graph.
- 
parentsThe parents of this node.
 
-