]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.spreadsheet.graph/src/org/simantics/spreadsheet/graph/adapter/TextCellVariable.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.spreadsheet.graph / src / org / simantics / spreadsheet / graph / adapter / TextCellVariable.java
index 5b8002bd0cd43c57b57c090215bb360541fc6e94..9c79d8998e4d3dad260568b82d32364af75a1e4c 100644 (file)
@@ -1,74 +1,74 @@
-package org.simantics.spreadsheet.graph.adapter;\r
-\r
-import org.simantics.databoard.Bindings;\r
-import org.simantics.databoard.binding.mutable.Variant;\r
-import org.simantics.db.ReadGraph;\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.StandardGraphChildVariable;\r
-import org.simantics.db.layer0.variable.Variable;\r
-import org.simantics.db.layer0.variable.VariableSpaceManipulator;\r
-import org.simantics.db.layer0.variable.VariableSpaceManipulator.ChildCreationData;\r
-import org.simantics.db.layer0.variable.VariableSpaceManipulator.Modification;\r
-import org.simantics.db.layer0.variable.VariableSpaceManipulator.PropertyCreationData;\r
-import org.simantics.spreadsheet.common.cell.VariableCellEditor;\r
-import org.simantics.spreadsheet.resource.SpreadsheetResource;\r
-\r
-public class TextCellVariable extends StandardGraphChildVariable {\r
-\r
-       public TextCellVariable(Variable parent, Resource resource) throws DatabaseException {\r
-               super(parent, null, resource);\r
-       }\r
-       \r
-       @Override\r
-       public String getLabel(ReadGraph graph) throws DatabaseException {\r
-               return null;\r
-       }\r
-       \r
-    @SuppressWarnings("unchecked")\r
-    protected <T> T tryAdapt(ReadGraph graph, Class<T> clazz) throws DatabaseException {\r
-       if(VariableCellEditor.class == clazz) {\r
-               return (T)new VariableCellEditor() {\r
-                               \r
-                               @Override\r
-                               public void edit(WriteGraph graph, Variable cell, String text) throws DatabaseException {\r
-                                       \r
-                                       SpreadsheetResource sr = SpreadsheetResource.getInstance(graph);\r
-                                       Resource configuration = cell.getPossibleRepresents(graph);\r
-                                       graph.claimLiteral(configuration, sr.Cell_content, Variant.ofInstance(text), Bindings.VARIANT);\r
-                                       \r
-                               }\r
-                               \r
-                               @Override\r
-                               public void copy(WriteGraph graph, Variable cell, String location) throws DatabaseException {\r
-                                       \r
-                                       SpreadsheetResource sr = SpreadsheetResource.getInstance(graph);\r
-                                       Resource configuration = cell.getPossibleRepresents(graph);\r
-                                       Variant content = graph.getPossibleRelatedValue(configuration, sr.Cell_content, Bindings.VARIANT);\r
-                                       PropertyCreationData[] pData = new PropertyCreationData[] { PropertyCreationData.build(SpreadsheetResource.URIs.Cell_content, content) };\r
-                                       ChildCreationData data = ChildCreationData.build(location, SpreadsheetResource.URIs.TextCell, pData);\r
-                                       Variable sheet = cell.getParent(graph);\r
-                                       VariableSpaceManipulator manipulator = sheet.adapt(graph, VariableSpaceManipulator.class);\r
-                                       manipulator.apply(graph, Modification.addChild(data));\r
-                                       \r
-                               }\r
-                               \r
-                       };\r
-       }\r
-       return null;\r
-    }\r
-\r
-    @Override\r
-    public <T> T adapt(ReadGraph graph, Class<T> clazz) throws DatabaseException {\r
-        T t = tryAdapt(graph, clazz);\r
-        return t != null ? t : super.adapt(graph, clazz);\r
-    }\r
-\r
-    @Override\r
-    public <T> T adaptPossible(ReadGraph graph, Class<T> clazz) throws DatabaseException {\r
-        T t = tryAdapt(graph, clazz);\r
-        return t != null ? t : super.adaptPossible(graph, clazz);\r
-    }\r
-\r
-}\r
+package org.simantics.spreadsheet.graph.adapter;
+
+import org.simantics.databoard.Bindings;
+import org.simantics.databoard.binding.mutable.Variant;
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.WriteGraph;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.layer0.variable.StandardGraphChildVariable;
+import org.simantics.db.layer0.variable.Variable;
+import org.simantics.db.layer0.variable.VariableSpaceManipulator;
+import org.simantics.db.layer0.variable.VariableSpaceManipulator.ChildCreationData;
+import org.simantics.db.layer0.variable.VariableSpaceManipulator.Modification;
+import org.simantics.db.layer0.variable.VariableSpaceManipulator.PropertyCreationData;
+import org.simantics.spreadsheet.common.cell.VariableCellEditor;
+import org.simantics.spreadsheet.resource.SpreadsheetResource;
+
+public class TextCellVariable extends StandardGraphChildVariable {
+
+       public TextCellVariable(Variable parent, Resource resource) throws DatabaseException {
+               super(parent, null, resource);
+       }
+       
+       @Override
+       public String getLabel(ReadGraph graph) throws DatabaseException {
+               return null;
+       }
+       
+    @SuppressWarnings("unchecked")
+    protected <T> T tryAdapt(ReadGraph graph, Class<T> clazz) throws DatabaseException {
+       if(VariableCellEditor.class == clazz) {
+               return (T)new VariableCellEditor() {
+                               
+                               @Override
+                               public void edit(WriteGraph graph, Variable cell, String text) throws DatabaseException {
+                                       
+                                       SpreadsheetResource sr = SpreadsheetResource.getInstance(graph);
+                                       Resource configuration = cell.getPossibleRepresents(graph);
+                                       graph.claimLiteral(configuration, sr.Cell_content, Variant.ofInstance(text), Bindings.VARIANT);
+                                       
+                               }
+                               
+                               @Override
+                               public void copy(WriteGraph graph, Variable cell, String location) throws DatabaseException {
+                                       
+                                       SpreadsheetResource sr = SpreadsheetResource.getInstance(graph);
+                                       Resource configuration = cell.getPossibleRepresents(graph);
+                                       Variant content = graph.getPossibleRelatedValue(configuration, sr.Cell_content, Bindings.VARIANT);
+                                       PropertyCreationData[] pData = new PropertyCreationData[] { PropertyCreationData.build(SpreadsheetResource.URIs.Cell_content, content) };
+                                       ChildCreationData data = ChildCreationData.build(location, SpreadsheetResource.URIs.TextCell, pData);
+                                       Variable sheet = cell.getParent(graph);
+                                       VariableSpaceManipulator manipulator = sheet.adapt(graph, VariableSpaceManipulator.class);
+                                       manipulator.apply(graph, Modification.addChild(data));
+                                       
+                               }
+                               
+                       };
+       }
+       return null;
+    }
+
+    @Override
+    public <T> T adapt(ReadGraph graph, Class<T> clazz) throws DatabaseException {
+        T t = tryAdapt(graph, clazz);
+        return t != null ? t : super.adapt(graph, clazz);
+    }
+
+    @Override
+    public <T> T adaptPossible(ReadGraph graph, Class<T> clazz) throws DatabaseException {
+        T t = tryAdapt(graph, clazz);
+        return t != null ? t : super.adaptPossible(graph, clazz);
+    }
+
+}