Removed DOCUMENT ME comments that were generated and applied source code
[utils] / system / general / src / main / java / org / wamblee / system / graph / Visitor.java
index 2f3bdb5a6e08b33413cb4841d1a6283c93c66c32..371a8f503998b449f2a4f814ff30de929ec6d066 100644 (file)
 package org.wamblee.system.graph;
 
 /**
- * Visitor of a graph. 
+ * Visitor of a graph.
+ * 
  * @author Erik Brakkee.
- *
+ * 
  */
 public interface Visitor {
     /**
      * Visits a node. Called by {@link Graph#accept(Visitor)}.
-     *
-     * @param aNode Node to visit.
+     * 
+     * @param aNode
+     *            Node to visit.
      */
     void visitNode(Node aNode);
 
     /**
      * Visits a node. Called by {@link Graph#accept(Visitor)}.
-     *
-     * @param aEdge Edge to visit.
+     * 
+     * @param aEdge
+     *            Edge to visit.
      */
     void visitEdge(Edge aEdge);
 }