(no commit message)
[utils] / system / general / src / main / java / org / wamblee / system / graph / Node.java
index 0becfda6488994a85cad4c0170440fa9defcf666..d1df3c03056cbab65d76efdee77d3c471afc662a 100644 (file)
  */ 
 package org.wamblee.system.graph;
 
+/**
+ * Represents a node in a graph. 
+ * @author Erik Brakkee
+ */
 public interface Node {
     
+    /**
+     * Gets the node name uniquely identifying the node in the graph. 
+     * @return Node name. 
+     */
     String getName();
 
 }