X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=system%2Fgeneral%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fsystem%2Fgraph%2Fcomponent%2FCheckExternallyProvidedVisitor.java;h=c921630b5f9b9f4f73dd83ec31b1dcee413fd582;hb=9bc96feb1a8b20fdb87edbfca54297e206229112;hp=ef5ea4fb7f024eb459db599b97f2e7ee8ade63e8;hpb=c0f5e2d0fdc8b7544652c1d92248717c086caaf6;p=utils diff --git a/system/general/src/main/java/org/wamblee/system/graph/component/CheckExternallyProvidedVisitor.java b/system/general/src/main/java/org/wamblee/system/graph/component/CheckExternallyProvidedVisitor.java index ef5ea4fb..c921630b 100644 --- a/system/general/src/main/java/org/wamblee/system/graph/component/CheckExternallyProvidedVisitor.java +++ b/system/general/src/main/java/org/wamblee/system/graph/component/CheckExternallyProvidedVisitor.java @@ -24,10 +24,8 @@ import org.wamblee.system.graph.Node; import org.wamblee.system.graph.Visitor; /** - * Visitor that checks externally provided - * + * 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; }