Removed DOCUMENT ME comments that were generated and applied source code
[utils] / system / general / src / main / java / org / wamblee / system / graph / Edge.java
index 8b56984e83ddd41c839104c109de2dc1b6e2ab11..c481778d58861d9529b7fc55c2506c78712cc09f 100644 (file)
 package org.wamblee.system.graph;
 
 /**
- * Represents an edge of a graph. 
+ * Represents an edge of a graph.
  * 
  * @author Erik Brakkee
  */
 public interface Edge {
     /**
      * 
-    DOCUMENT ME!
-     *
+     * 
      * @return The from part of the edge.
      */
     Node getFrom();
 
     /**
      * 
-    DOCUMENT ME!
-     *
+     * 
      * @return The to part of the edge.
      */
     Node getTo();