]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.procore/src/org/simantics/db/procore/cluster/OperationTable.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db.procore / src / org / simantics / db / procore / cluster / OperationTable.java
index d912a1153935c5b4f4cad73078a5ed6786027a6a..d5f5a420f334c18b0d0ccea312c7e7ec62967831 100644 (file)
@@ -1,69 +1,69 @@
-/*******************************************************************************\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.db.procore.cluster;\r
-\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.impl.ClusterI.Procedure;\r
-import org.simantics.db.impl.ClusterSupport;\r
-import org.simantics.db.impl.Modifier;\r
-import org.simantics.db.impl.Table;\r
-import org.simantics.db.impl.TableFactory;\r
-import org.simantics.db.impl.TableSizeListener;\r
-\r
-public class OperationTable extends Table<int[]> {\r
-\r
-           OperationTable(TableSizeListener sizeListener, int[] header, int headerBase, int[] ints) {\r
-               super(TableFactory.getIntFactory(), sizeListener, header, headerBase, ints);\r
-           }\r
-               int getOperationCount() {\r
-                       return getTableCount();\r
-               }\r
-               int createOperation(int type, int argIndex, int valIndex, int valSize) {\r
-                       int tableIndex = createNewElement(4);\r
-                   int realIndex = checkIndexAndGetRealIndex(tableIndex, 4);\r
-                       int[] table = getTable();\r
-                       table[realIndex] = type;\r
-                       table[++realIndex] = argIndex;\r
-                       table[++realIndex] = valIndex;\r
-                       table[++realIndex] = valSize;\r
-                   return tableIndex - ZERO_SHIFT; // operation index is zero based\r
-               }\r
-               int getOperationType(int opIndex) {\r
-                       int tableIndex = ZERO_SHIFT + opIndex*4;\r
-                   int realIndex = checkIndexAndGetRealIndex(tableIndex, 4);\r
-                       int[] table = getTable();\r
-                       return table[realIndex];\r
-               }\r
-               int getOperationArgumentIndex(int opIndex) {\r
-                       int tableIndex = ZERO_SHIFT + opIndex*4;\r
-                   int realIndex = checkIndexAndGetRealIndex(tableIndex, 4);\r
-                       int[] table = getTable();\r
-                       return table[++realIndex];\r
-               }\r
-               int getValueIndex(int opIndex) {\r
-                       int tableIndex = ZERO_SHIFT + opIndex*4;\r
-                   int realIndex = checkIndexAndGetRealIndex(tableIndex, 4);\r
-                       int[] table = getTable();\r
-                       return table[realIndex+2];\r
-               }\r
-               int getValueSize(int opIndex) {\r
-                       int tableIndex = ZERO_SHIFT + opIndex*4;\r
-                   int realIndex = checkIndexAndGetRealIndex(tableIndex, 4);\r
-                       int[] table = getTable();\r
-                       return table[realIndex+3];\r
-               }\r
-        @Override\r
-        public <Context> boolean foreach(int setIndex, Procedure procedure, Context context,\r
-                ClusterSupport support, Modifier modifier) throws DatabaseException {\r
-            throw new UnsupportedOperationException();\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.db.procore.cluster;
+
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.impl.ClusterI.Procedure;
+import org.simantics.db.impl.ClusterSupport;
+import org.simantics.db.impl.Modifier;
+import org.simantics.db.impl.Table;
+import org.simantics.db.impl.TableFactory;
+import org.simantics.db.impl.TableSizeListener;
+
+public class OperationTable extends Table<int[]> {
+
+           OperationTable(TableSizeListener sizeListener, int[] header, int headerBase, int[] ints) {
+               super(TableFactory.getIntFactory(), sizeListener, header, headerBase, ints);
+           }
+               int getOperationCount() {
+                       return getTableCount();
+               }
+               int createOperation(int type, int argIndex, int valIndex, int valSize) {
+                       int tableIndex = createNewElement(4);
+                   int realIndex = checkIndexAndGetRealIndex(tableIndex, 4);
+                       int[] table = getTable();
+                       table[realIndex] = type;
+                       table[++realIndex] = argIndex;
+                       table[++realIndex] = valIndex;
+                       table[++realIndex] = valSize;
+                   return tableIndex - ZERO_SHIFT; // operation index is zero based
+               }
+               int getOperationType(int opIndex) {
+                       int tableIndex = ZERO_SHIFT + opIndex*4;
+                   int realIndex = checkIndexAndGetRealIndex(tableIndex, 4);
+                       int[] table = getTable();
+                       return table[realIndex];
+               }
+               int getOperationArgumentIndex(int opIndex) {
+                       int tableIndex = ZERO_SHIFT + opIndex*4;
+                   int realIndex = checkIndexAndGetRealIndex(tableIndex, 4);
+                       int[] table = getTable();
+                       return table[++realIndex];
+               }
+               int getValueIndex(int opIndex) {
+                       int tableIndex = ZERO_SHIFT + opIndex*4;
+                   int realIndex = checkIndexAndGetRealIndex(tableIndex, 4);
+                       int[] table = getTable();
+                       return table[realIndex+2];
+               }
+               int getValueSize(int opIndex) {
+                       int tableIndex = ZERO_SHIFT + opIndex*4;
+                   int realIndex = checkIndexAndGetRealIndex(tableIndex, 4);
+                       int[] table = getTable();
+                       return table[realIndex+3];
+               }
+        @Override
+        public <Context> boolean foreach(int setIndex, Procedure procedure, Context context,
+                ClusterSupport support, Modifier modifier) throws DatabaseException {
+            throw new UnsupportedOperationException();
+        }
+}