X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.structural2%2Fsrc%2Forg%2Fsimantics%2Fstructural2%2Fvariables%2FConnection.java;h=b729d1f7747ff77349a385ca8f227025a2b59b17;hb=1a8971ec56f21b4532e22d787c3f5a15df0b5f2b;hp=b404932e7a58c6d59bd98917c30dee81df36d788;hpb=0ae2b770234dfc3cbb18bd38f324125cf0faca07;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.structural2/src/org/simantics/structural2/variables/Connection.java b/bundles/org.simantics.structural2/src/org/simantics/structural2/variables/Connection.java index b404932e7..b729d1f77 100644 --- a/bundles/org.simantics.structural2/src/org/simantics/structural2/variables/Connection.java +++ b/bundles/org.simantics.structural2/src/org/simantics/structural2/variables/Connection.java @@ -13,13 +13,13 @@ public interface Connection { * Return absolute URIs of the connection points. An optional (may be null) relationType may be used * to filter the returned connection points. */ - Collection getConnectionPointURIs(ReadGraph graph, Resource relationType) throws DatabaseException; + Collection getConnectionPointURIs(ReadGraph graph, Variable component, Resource relationType) throws DatabaseException; /** * Return the connection points. An optional (may be null) relationType may be used * to filter the returned connection points. */ - Collection getConnectionPoints(ReadGraph graph, Resource relationType) throws DatabaseException; + Collection getConnectionPoints(ReadGraph graph, Variable component, Resource relationType) throws DatabaseException; - Collection getConnectionPointDescriptors(ReadGraph graph, Resource relationType) throws DatabaseException; + Collection getConnectionPointDescriptors(ReadGraph graph, Variable component, Resource relationType) throws DatabaseException; }