]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.structural2/src/org/simantics/structural2/variables/PairConnectionDescriptor.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.structural2 / src / org / simantics / structural2 / variables / PairConnectionDescriptor.java
index 0273dbd7bed473adbeadf3c912351d3b6e62b3ac..ee0a7fa2c0b108c3124def4ec220722e42e7f4d9 100644 (file)
@@ -1,80 +1,80 @@
-package org.simantics.structural2.variables;\r
-\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\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.variable.Variable;\r
-import org.simantics.utils.datastructures.Pair;\r
-\r
-public class PairConnectionDescriptor extends AbstractVariableConnectionPointDescriptor {\r
-       \r
-       public Variable base;\r
-       public Pair<String,Resource> pair;\r
-       \r
-       public PairConnectionDescriptor(Variable base, Pair<String,Resource> pair) {\r
-               this.base = base;\r
-               this.pair = pair;\r
-       }\r
-       @Override\r
-       public int hashCode() {\r
-               return base.hashCode() + 31*pair.hashCode();\r
-       }\r
-       @Override\r
-       public boolean equals(Object object) {\r
-        if (this == object)\r
-            return true;\r
-        else if (object == null)\r
-            return false;\r
-        else if (!(object instanceof PairConnectionDescriptor))\r
-            return false;\r
-        PairConnectionDescriptor r = (PairConnectionDescriptor)object;\r
-        if(!r.pair.equals(pair)) return false;\r
-        if(!r.base.equals(base)) return false;\r
-        return true;\r
-       }\r
-       \r
-       static class ComputeVariable extends UnaryRead<PairConnectionDescriptor, Variable> {\r
-\r
-               public ComputeVariable(PairConnectionDescriptor desc) {\r
-                       super(desc);\r
-               }\r
-\r
-               @Override\r
-               public Variable perform(ReadGraph graph) throws DatabaseException {\r
-                       return parameter.base.getChild(graph, parameter.pair.first).getProperty(graph, parameter.pair.second);\r
-               }\r
-               \r
-       }\r
-       @Override\r
-       public Variable getVariable(ReadGraph graph) throws DatabaseException {\r
-               return graph.syncRequest(new ComputeVariable(this), TransientCacheAsyncListener.<Variable>instance());\r
-       }\r
-       public String getURI(ReadGraph graph) throws DatabaseException {\r
-               return getVariable(graph).getURI(graph);\r
-       }\r
-       @Override\r
-       public Resource getConnectionPointResource(ReadGraph graph) throws DatabaseException {\r
-               return getVariable(graph).getPossiblePredicateResource(graph);\r
-       }\r
-       \r
-       @Override\r
-       public boolean isFlattenedFrom(ReadGraph graph, Variable possiblyStructuralCp) throws DatabaseException {\r
-               \r
-               Variable parent = possiblyStructuralCp.getParent(graph);\r
-               \r
-               String descURI = getURI(graph);\r
-               String parentURI = parent.getURI(graph);\r
-               if(descURI.startsWith(parentURI)) {\r
-                       // Children are in substructure\r
-                       if('/' == descURI.charAt(parentURI.length())) return true;\r
-                       // Otherwise require exact match\r
-                       return descURI.endsWith(possiblyStructuralCp.getName(graph));\r
-               } else {\r
-                       return false;\r
-               }\r
-               \r
-       }\r
-       \r
+package org.simantics.structural2.variables;
+
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+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.variable.Variable;
+import org.simantics.utils.datastructures.Pair;
+
+public class PairConnectionDescriptor extends AbstractVariableConnectionPointDescriptor {
+       
+       public Variable base;
+       public Pair<String,Resource> pair;
+       
+       public PairConnectionDescriptor(Variable base, Pair<String,Resource> pair) {
+               this.base = base;
+               this.pair = pair;
+       }
+       @Override
+       public int hashCode() {
+               return base.hashCode() + 31*pair.hashCode();
+       }
+       @Override
+       public boolean equals(Object object) {
+        if (this == object)
+            return true;
+        else if (object == null)
+            return false;
+        else if (!(object instanceof PairConnectionDescriptor))
+            return false;
+        PairConnectionDescriptor r = (PairConnectionDescriptor)object;
+        if(!r.pair.equals(pair)) return false;
+        if(!r.base.equals(base)) return false;
+        return true;
+       }
+       
+       static class ComputeVariable extends UnaryRead<PairConnectionDescriptor, Variable> {
+
+               public ComputeVariable(PairConnectionDescriptor desc) {
+                       super(desc);
+               }
+
+               @Override
+               public Variable perform(ReadGraph graph) throws DatabaseException {
+                       return parameter.base.getChild(graph, parameter.pair.first).getProperty(graph, parameter.pair.second);
+               }
+               
+       }
+       @Override
+       public Variable getVariable(ReadGraph graph) throws DatabaseException {
+               return graph.syncRequest(new ComputeVariable(this), TransientCacheAsyncListener.<Variable>instance());
+       }
+       public String getURI(ReadGraph graph) throws DatabaseException {
+               return getVariable(graph).getURI(graph);
+       }
+       @Override
+       public Resource getConnectionPointResource(ReadGraph graph) throws DatabaseException {
+               return getVariable(graph).getPossiblePredicateResource(graph);
+       }
+       
+       @Override
+       public boolean isFlattenedFrom(ReadGraph graph, Variable possiblyStructuralCp) throws DatabaseException {
+               
+               Variable parent = possiblyStructuralCp.getParent(graph);
+               
+               String descURI = getURI(graph);
+               String parentURI = parent.getURI(graph);
+               if(descURI.startsWith(parentURI)) {
+                       // Children are in substructure
+                       if('/' == descURI.charAt(parentURI.length())) return true;
+                       // Otherwise require exact match
+                       return descURI.endsWith(possiblyStructuralCp.getName(graph));
+               } else {
+                       return false;
+               }
+               
+       }
+       
 }
\ No newline at end of file