(no commit message)
[utils] / system / general / src / main / java / org / wamblee / system / graph / component / CheckExternallyProvidedVisitor.java
index ef5ea4fb7f024eb459db599b97f2e7ee8ade63e8..c921630b5f9b9f4f73dd83ec31b1dcee413fd582 100644 (file)
@@ -24,10 +24,8 @@ import org.wamblee.system.graph.Node;
 import org.wamblee.system.graph.Visitor;
 
 /**
- * Visitor that checks externally provided
- * <ul>
- *   <li>
- * </ul>
+ * Visitor that checks whether all externally provided interfaces are actually provided 
+ * by any of the internal components. 
  * 
  * @author Erik Brakkee
  *
@@ -35,7 +33,11 @@ import org.wamblee.system.graph.Visitor;
 public class CheckExternallyProvidedVisitor implements Visitor {
     
     private Graph _graph; 
-    
+
+    /**
+     * Constructs the visitor. 
+     * @param aGraph Component graph. 
+     */
     public CheckExternallyProvidedVisitor(Graph aGraph) { 
         _graph = aGraph; 
     }