]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.structural2/src/org/simantics/structural2/variables/AbstractVariableConnectionPointDescriptor.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.structural2 / src / org / simantics / structural2 / variables / AbstractVariableConnectionPointDescriptor.java
index 561567791ba82966ffebc7abfc667d6efb2ee2e5..382c52e3fe0cf38e5f380ea16fc2bcf2dc5f7f6e 100644 (file)
@@ -1,62 +1,62 @@
-package org.simantics.structural2.variables;\r
-\r
-import java.util.Collection;\r
-\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.common.procedure.adapter.TransientCacheAsyncListener;\r
-import org.simantics.db.common.request.UnaryRead;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.layer0.request.PropertyInfo;\r
-import org.simantics.db.layer0.request.PropertyInfoRequest;\r
-import org.simantics.db.layer0.variable.Variable;\r
-import org.simantics.db.layer0.variable.Variables;\r
-import org.simantics.structural2.Functions;\r
-import org.simantics.structural2.Functions.InterfaceResolution;\r
-\r
-abstract public class AbstractVariableConnectionPointDescriptor implements VariableConnectionPointDescriptor {\r
-\r
-       static class ComputeInterfaceDescription extends UnaryRead<AbstractVariableConnectionPointDescriptor, Collection<InterfaceResolution>> {\r
-\r
-               public ComputeInterfaceDescription(AbstractVariableConnectionPointDescriptor desc) {\r
-                       super(desc);\r
-               }\r
-\r
-               @Override\r
-               public Collection<InterfaceResolution> perform(ReadGraph graph) throws DatabaseException {\r
-                       return Functions.computeInterfacePaths(graph, parameter.getVariable(graph).getParent(graph));\r
-               }\r
-               \r
-       }\r
-       \r
-       @Override\r
-       public Collection<InterfaceResolution> getInterfaceDescription(ReadGraph graph) throws DatabaseException {\r
-               return graph.syncRequest(new ComputeInterfaceDescription(this), TransientCacheAsyncListener.<Collection<InterfaceResolution>>instance());\r
-       }\r
-       \r
-       @Override\r
-       public boolean isLeaf(ReadGraph graph) throws DatabaseException {\r
-               \r
-               Collection<InterfaceResolution> inf = getInterfaceDescription(graph);\r
-               if(inf == null) return true;\r
-               return inf.isEmpty();\r
-               \r
-       }\r
-       \r
-       @Override\r
-       public boolean hasClassification(ReadGraph graph, String classification) throws DatabaseException {\r
-               \r
-       PropertyInfo info = graph.syncRequest(new PropertyInfoRequest(getConnectionPointResource(graph)), TransientCacheAsyncListener.<PropertyInfo>instance());\r
-       return info.hasClassification(classification);\r
-               \r
-       }\r
-       \r
-       @Override\r
-       public String getRelativeRVI(ReadGraph graph, Variable base) throws DatabaseException {\r
-               \r
-       String var = getURI(graph);\r
-       String baseURI = base.getURI(graph);\r
-       return Variables.getRelativeRVI(baseURI, var);\r
-\r
-       }\r
-\r
-}\r
+package org.simantics.structural2.variables;
+
+import java.util.Collection;
+
+import org.simantics.db.ReadGraph;
+import org.simantics.db.common.procedure.adapter.TransientCacheAsyncListener;
+import org.simantics.db.common.request.UnaryRead;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.layer0.request.PropertyInfo;
+import org.simantics.db.layer0.request.PropertyInfoRequest;
+import org.simantics.db.layer0.variable.Variable;
+import org.simantics.db.layer0.variable.Variables;
+import org.simantics.structural2.Functions;
+import org.simantics.structural2.Functions.InterfaceResolution;
+
+abstract public class AbstractVariableConnectionPointDescriptor implements VariableConnectionPointDescriptor {
+
+       static class ComputeInterfaceDescription extends UnaryRead<AbstractVariableConnectionPointDescriptor, Collection<InterfaceResolution>> {
+
+               public ComputeInterfaceDescription(AbstractVariableConnectionPointDescriptor desc) {
+                       super(desc);
+               }
+
+               @Override
+               public Collection<InterfaceResolution> perform(ReadGraph graph) throws DatabaseException {
+                       return Functions.computeInterfacePaths(graph, parameter.getVariable(graph).getParent(graph));
+               }
+               
+       }
+       
+       @Override
+       public Collection<InterfaceResolution> getInterfaceDescription(ReadGraph graph) throws DatabaseException {
+               return graph.syncRequest(new ComputeInterfaceDescription(this), TransientCacheAsyncListener.<Collection<InterfaceResolution>>instance());
+       }
+       
+       @Override
+       public boolean isLeaf(ReadGraph graph) throws DatabaseException {
+               
+               Collection<InterfaceResolution> inf = getInterfaceDescription(graph);
+               if(inf == null) return true;
+               return inf.isEmpty();
+               
+       }
+       
+       @Override
+       public boolean hasClassification(ReadGraph graph, String classification) throws DatabaseException {
+               
+       PropertyInfo info = graph.syncRequest(new PropertyInfoRequest(getConnectionPointResource(graph)), TransientCacheAsyncListener.<PropertyInfo>instance());
+       return info.hasClassification(classification);
+               
+       }
+       
+       @Override
+       public String getRelativeRVI(ReadGraph graph, Variable base) throws DatabaseException {
+               
+       String var = getURI(graph);
+       String baseURI = base.getURI(graph);
+       return Variables.getRelativeRVI(baseURI, var);
+
+       }
+
+}