(no commit message)
[utils] / system / general / src / main / java / org / wamblee / system / container / Container.java
index cfc5b8aa140ad34fe11a65d06c009e4afe288da9..92aba2144c3286f49ef0554fa5b537b6acf9e1b3 100644 (file)
@@ -224,13 +224,13 @@ public class Container extends AbstractComponent<Scope> {
     private ComponentGraph createComponentGraph() {
         ComponentGraph graph = new ComponentGraph();
         for (RequiredInterface req : getRequiredInterfaces()) {
-            graph.addRequiredInterface(req);
+            graph.addRequiredInterface(this, req);
         }
         for (Component comp : _components) {
             graph.addComponent(comp);
         }
         for (ProvidedInterface prov: getProvidedInterfaces()) { 
-            graph.addProvidedInterface(prov);
+            graph.addProvidedInterface(this, prov);
         }
 
         graph.addRestriction(_restriction);