]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.structural2/src/org/simantics/structural2/scl/FindComponentTypeRequest.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.structural2 / src / org / simantics / structural2 / scl / FindComponentTypeRequest.java
index 566a1384fb21bbedbc6fa800b932b6e5e7a3aeb0..c5a91596ef72886faf21a12fe932fb830d012d58 100644 (file)
@@ -1,38 +1,38 @@
-package org.simantics.structural2.scl;\r
-\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.common.request.ResourceRead;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.layer0.Layer0;\r
-import org.simantics.structural.stubs.StructuralResource2;\r
-import org.simantics.utils.datastructures.Pair;\r
-\r
-/**\r
- * Given component finds a component type it belongs to\r
- */\r
-public class FindComponentTypeRequest extends ResourceRead<Pair<Resource,Integer>> {\r
-\r
-       public FindComponentTypeRequest(Resource resource) {\r
-               super(resource);\r
-       }\r
-\r
-       @Override\r
-       public Pair<Resource,Integer> perform(ReadGraph graph) throws DatabaseException {               \r
-               StructuralResource2 STR = StructuralResource2.getInstance(graph);               \r
-               Resource type = graph.getPossibleObject(resource, STR.Defines);\r
-               if(type != null)\r
-                       return Pair.make(type, 0);              \r
-\r
-               Layer0 L0 = Layer0.getInstance(graph);\r
-               Resource parent = graph.getPossibleObject(resource, L0.PartOf);\r
-               if(parent != null) {\r
-                   Pair<Resource,Integer> result = \r
-                           graph.syncRequest(new FindComponentTypeRequest(parent));\r
-                       return Pair.make(result.first, result.second+1);\r
-               }\r
-\r
-               throw new DatabaseException("Unexpected graph structure at " + resource + ".");\r
-       }\r
-\r
-}\r
+package org.simantics.structural2.scl;
+
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.common.request.ResourceRead;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.layer0.Layer0;
+import org.simantics.structural.stubs.StructuralResource2;
+import org.simantics.utils.datastructures.Pair;
+
+/**
+ * Given component finds a component type it belongs to
+ */
+public class FindComponentTypeRequest extends ResourceRead<Pair<Resource,Integer>> {
+
+       public FindComponentTypeRequest(Resource resource) {
+               super(resource);
+       }
+
+       @Override
+       public Pair<Resource,Integer> perform(ReadGraph graph) throws DatabaseException {               
+               StructuralResource2 STR = StructuralResource2.getInstance(graph);               
+               Resource type = graph.getPossibleObject(resource, STR.Defines);
+               if(type != null)
+                       return Pair.make(type, 0);              
+
+               Layer0 L0 = Layer0.getInstance(graph);
+               Resource parent = graph.getPossibleObject(resource, L0.PartOf);
+               if(parent != null) {
+                   Pair<Resource,Integer> result = 
+                           graph.syncRequest(new FindComponentTypeRequest(parent));
+                       return Pair.make(result.first, result.second+1);
+               }
+
+               throw new DatabaseException("Unexpected graph structure at " + resource + ".");
+       }
+
+}