]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.spreadsheet/src/org/simantics/spreadsheet/CellEditor.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.spreadsheet / src / org / simantics / spreadsheet / CellEditor.java
index 3fb6a7329a93e039e033855d62211109446700c0..b322335a1c0bcd8d36d908526d17daced932fc92 100644 (file)
@@ -1,72 +1,72 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.spreadsheet;\r
-\r
-import java.util.List;\r
-import java.util.function.Consumer;\r
-\r
-import org.simantics.databoard.binding.Binding;\r
-import org.simantics.databoard.binding.mutable.MutableVariant;\r
-import org.simantics.databoard.binding.mutable.Variant;\r
-import org.simantics.spreadsheet.ClientModel.OperationMode;\r
-\r
-public interface CellEditor<O> {\r
-    \r
-       public interface Transaction<O> {\r
-           \r
-           void setContext(Object context);\r
-           \r
-           Object getContext();\r
-           \r
-           void add(O operation);\r
-           \r
-               /*\r
-                * Applies the operations collected with this transaction\r
-                * \r
-                */\r
-           void commit();\r
-           \r
-           boolean isOperationMode();\r
-        \r
-        List<Object> needSynchronization();\r
-\r
-        void needSynchronization(Object synchronizable);\r
-       }\r
-       \r
-       /*\r
-        * Sets the given property of the given cell\r
-        * \r
-        * @param transaction a combined transaction, null for immediate change\r
-        * @param location a cell location e.g. 'A1'\r
-        * @param property the name of the property\r
-        * @param value the property value\r
-        * @param binding used for serializing the value \r
-        */\r
-       <T> void edit(Transaction<O> transaction, String location, String property, T value, Binding binding, Consumer<?> callback);\r
-       /*\r
-        * Edits the given cell using the given textual input\r
-        * \r
-        * @param transaction a combined transaction, null for immediate change\r
-        * @param location a cell location e.g. 'A1'\r
-        * @param value a text describing the change\r
-        */\r
-    void edit(Transaction<O> transaction, String location, Variant variant, Consumer<?> callback);\r
-\r
-    void copy(Transaction<O> transaction, String location, MutableVariant variant, Consumer<?> callback);\r
-    \r
-       /*\r
-        * Creates a new transaction object\r
-        * \r
-        */\r
-    Transaction<O> startTransaction(OperationMode mode);\r
-    \r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.spreadsheet;
+
+import java.util.List;
+import java.util.function.Consumer;
+
+import org.simantics.databoard.binding.Binding;
+import org.simantics.databoard.binding.mutable.MutableVariant;
+import org.simantics.databoard.binding.mutable.Variant;
+import org.simantics.spreadsheet.ClientModel.OperationMode;
+
+public interface CellEditor<O> {
+    
+       public interface Transaction<O> {
+           
+           void setContext(Object context);
+           
+           Object getContext();
+           
+           void add(O operation);
+           
+               /*
+                * Applies the operations collected with this transaction
+                * 
+                */
+           void commit();
+           
+           boolean isOperationMode();
+        
+        List<Object> needSynchronization();
+
+        void needSynchronization(Object synchronizable);
+       }
+       
+       /*
+        * Sets the given property of the given cell
+        * 
+        * @param transaction a combined transaction, null for immediate change
+        * @param location a cell location e.g. 'A1'
+        * @param property the name of the property
+        * @param value the property value
+        * @param binding used for serializing the value 
+        */
+       <T> void edit(Transaction<O> transaction, String location, String property, T value, Binding binding, Consumer<?> callback);
+       /*
+        * Edits the given cell using the given textual input
+        * 
+        * @param transaction a combined transaction, null for immediate change
+        * @param location a cell location e.g. 'A1'
+        * @param value a text describing the change
+        */
+    void edit(Transaction<O> transaction, String location, Variant variant, Consumer<?> callback);
+
+    void copy(Transaction<O> transaction, String location, MutableVariant variant, Consumer<?> callback);
+    
+       /*
+        * Creates a new transaction object
+        * 
+        */
+    Transaction<O> startTransaction(OperationMode mode);
+    
+}