]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.spreadsheet.graph/src/org/simantics/spreadsheet/graph/adapter/SheetVariableSpaceManipulator.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.spreadsheet.graph / src / org / simantics / spreadsheet / graph / adapter / SheetVariableSpaceManipulator.java
index 66adc074130e0ea3dabb3dd3d86826f8c9075e71..82ace910d0f521473b92caa0c917e37d302916f4 100644 (file)
@@ -1,43 +1,43 @@
-package org.simantics.spreadsheet.graph.adapter;\r
-\r
-import org.simantics.databoard.Bindings;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.WriteGraph;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.layer0.variable.Variable;\r
-import org.simantics.db.layer0.variable.VariableSpaceManipulator;\r
-import org.simantics.layer0.Layer0;\r
-\r
-public class SheetVariableSpaceManipulator implements VariableSpaceManipulator {\r
-    \r
-    private Variable variable;\r
-    public SheetVariableSpaceManipulator(Variable variable) {\r
-        this.variable = variable;\r
-    }\r
-\r
-    @Override\r
-    public void apply(WriteGraph graph, Modification modification) throws DatabaseException {\r
-        \r
-        Layer0 L0 = Layer0.getInstance(graph);\r
-        for(String name : modification.removedChildren) {\r
-            Variable child = variable.getChild(graph, name);\r
-            Resource represents = child.getRepresents(graph);\r
-            graph.deny(represents, L0.PartOf);\r
-        }\r
-        \r
-        for(ChildCreationData data : modification.newChildren) {\r
-            Resource container = variable.getRepresents(graph);\r
-            Resource cell = graph.newResource();\r
-            Resource type = graph.getResource(data.type);\r
-            graph.claim(cell, L0.InstanceOf, null, type);\r
-            graph.addLiteral(cell, L0.HasName, L0.NameOf, L0.String, data.name, Bindings.STRING);\r
-            for(PropertyCreationData p : data.properties) {\r
-                Resource property = graph.getResource(p.name);\r
-                graph.claimLiteral(cell, property, p.value.getValue());\r
-            }\r
-            graph.claim(cell, L0.PartOf, container);\r
-            \r
-        }\r
-    }\r
-\r
-}\r
+package org.simantics.spreadsheet.graph.adapter;
+
+import org.simantics.databoard.Bindings;
+import org.simantics.db.Resource;
+import org.simantics.db.WriteGraph;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.layer0.variable.Variable;
+import org.simantics.db.layer0.variable.VariableSpaceManipulator;
+import org.simantics.layer0.Layer0;
+
+public class SheetVariableSpaceManipulator implements VariableSpaceManipulator {
+    
+    private Variable variable;
+    public SheetVariableSpaceManipulator(Variable variable) {
+        this.variable = variable;
+    }
+
+    @Override
+    public void apply(WriteGraph graph, Modification modification) throws DatabaseException {
+        
+        Layer0 L0 = Layer0.getInstance(graph);
+        for(String name : modification.removedChildren) {
+            Variable child = variable.getChild(graph, name);
+            Resource represents = child.getRepresents(graph);
+            graph.deny(represents, L0.PartOf);
+        }
+        
+        for(ChildCreationData data : modification.newChildren) {
+            Resource container = variable.getRepresents(graph);
+            Resource cell = graph.newResource();
+            Resource type = graph.getResource(data.type);
+            graph.claim(cell, L0.InstanceOf, null, type);
+            graph.addLiteral(cell, L0.HasName, L0.NameOf, L0.String, data.name, Bindings.STRING);
+            for(PropertyCreationData p : data.properties) {
+                Resource property = graph.getResource(p.name);
+                graph.claimLiteral(cell, property, p.value.getValue());
+            }
+            graph.claim(cell, L0.PartOf, container);
+            
+        }
+    }
+
+}