]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling/src/org/simantics/modeling/SubstructureMapRequest.java
Add utility class org.simantics.modeling.help.HelpContexts
[simantics/platform.git] / bundles / org.simantics.modeling / src / org / simantics / modeling / SubstructureMapRequest.java
index 2aafa7c25c5643bd672c0ac6ec90ffd1b7073eaf..75aacc475874eba5a468275195bb8bf8b45f2a63 100644 (file)
@@ -1,62 +1,62 @@
-package org.simantics.modeling;\r
-\r
-import gnu.trove.map.hash.THashMap;\r
-\r
-import java.util.Map;\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.common.uri.UnescapedChildMapOfResource;\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.request.UnescapedPropertyMapOfResource;\r
-import org.simantics.layer0.Layer0;\r
-import org.simantics.scl.compiler.types.Type;\r
-import org.simantics.structural.stubs.StructuralResource2;\r
-import org.simantics.utils.datastructures.Pair;\r
-\r
-/**\r
- * Deprecated: Use ComponentTypeSubstructure that supports deep references\r
- */\r
-@Deprecated\r
-public class SubstructureMapRequest extends ResourceRead<THashMap<String, Pair<String,Type>>>{\r
-\r
-    public SubstructureMapRequest(Resource type) {\r
-        super(type);\r
-    }\r
-\r
-    private void collect(ReadGraph graph, Resource t, THashMap<String, Pair<String,Type>> result) throws DatabaseException {\r
-        Layer0 L0 = Layer0.getInstance(graph);\r
-        for(Resource relation : graph.getObjects(t, L0.DomainOf)) {\r
-            if(graph.isSubrelationOf(relation, L0.HasProperty)) {\r
-                PropertyInfo propertyInfo = graph.syncRequest(new PropertyInfoRequest(relation));\r
-                result.put(propertyInfo.name, Pair.make("#" + propertyInfo.name, SCLTypeUtils.getType(propertyInfo)));\r
-            }\r
-        }\r
-    }\r
-    \r
-    @Override\r
-    public THashMap<String, Pair<String,Type>> perform(ReadGraph graph) throws DatabaseException {\r
-        THashMap<String, Pair<String,Type>> propertyMap = new THashMap<String, Pair<String,Type>>();\r
-        StructuralResource2 STR = StructuralResource2.getInstance(graph);\r
-        Resource composite = graph.getPossibleObject(resource, STR.IsDefinedBy);\r
-        if(composite != null) {\r
-               for(Map.Entry<String, Resource> child : graph.sync(new UnescapedChildMapOfResource(composite)).entrySet()) {\r
-                   for(PropertyInfo property : graph.sync(new UnescapedPropertyMapOfResource(child.getValue())).values()) {\r
-                       propertyMap.put(child.getKey() + "." + property.name,\r
-                               Pair.make("/" + child.getKey() + "#" + property.name, \r
-                                       SCLTypeUtils.getType(property)));\r
-                   }\r
-               }\r
-        }\r
-\r
-        collect(graph, resource, propertyMap);\r
-        for(Resource t : graph.getSupertypes(resource)) collect(graph, t, propertyMap);\r
-\r
-        return propertyMap;\r
-        \r
-    }\r
-\r
-}\r
+package org.simantics.modeling;
+
+import gnu.trove.map.hash.THashMap;
+
+import java.util.Map;
+
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.common.request.ResourceRead;
+import org.simantics.db.common.uri.UnescapedChildMapOfResource;
+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.request.UnescapedPropertyMapOfResource;
+import org.simantics.layer0.Layer0;
+import org.simantics.scl.compiler.types.Type;
+import org.simantics.structural.stubs.StructuralResource2;
+import org.simantics.utils.datastructures.Pair;
+
+/**
+ * Deprecated: Use ComponentTypeSubstructure that supports deep references
+ */
+@Deprecated
+public class SubstructureMapRequest extends ResourceRead<THashMap<String, Pair<String,Type>>>{
+
+    public SubstructureMapRequest(Resource type) {
+        super(type);
+    }
+
+    private void collect(ReadGraph graph, Resource t, THashMap<String, Pair<String,Type>> result) throws DatabaseException {
+        Layer0 L0 = Layer0.getInstance(graph);
+        for(Resource relation : graph.getObjects(t, L0.DomainOf)) {
+            if(graph.isSubrelationOf(relation, L0.HasProperty)) {
+                PropertyInfo propertyInfo = graph.syncRequest(new PropertyInfoRequest(relation));
+                result.put(propertyInfo.name, Pair.make("#" + propertyInfo.name, SCLTypeUtils.getType(propertyInfo)));
+            }
+        }
+    }
+    
+    @Override
+    public THashMap<String, Pair<String,Type>> perform(ReadGraph graph) throws DatabaseException {
+        THashMap<String, Pair<String,Type>> propertyMap = new THashMap<String, Pair<String,Type>>();
+        StructuralResource2 STR = StructuralResource2.getInstance(graph);
+        Resource composite = graph.getPossibleObject(resource, STR.IsDefinedBy);
+        if(composite != null) {
+               for(Map.Entry<String, Resource> child : graph.sync(new UnescapedChildMapOfResource(composite)).entrySet()) {
+                   for(PropertyInfo property : graph.sync(new UnescapedPropertyMapOfResource(child.getValue())).values()) {
+                       propertyMap.put(child.getKey() + "." + property.name,
+                               Pair.make("/" + child.getKey() + "#" + property.name, 
+                                       SCLTypeUtils.getType(property)));
+                   }
+               }
+        }
+
+        collect(graph, resource, propertyMap);
+        for(Resource t : graph.getSupertypes(resource)) collect(graph, t, propertyMap);
+
+        return propertyMap;
+        
+    }
+
+}