]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.spreadsheet/src/org/simantics/spreadsheet/Matrix.java
Adopt spreadsheet changes made in Balas development
[simantics/platform.git] / bundles / org.simantics.spreadsheet / src / org / simantics / spreadsheet / Matrix.java
index ed43d34919c4c80f6132e09bf73290c0a23bfa4f..8288cb6f38e6d46c8db875e1e93eddf2d00e84e1 100644 (file)
@@ -1,25 +1,25 @@
-/*******************************************************************************\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.Collection;\r
-\r
-\r
-public interface Matrix {\r
-       \r
-       int getColumnCount();\r
-       int getRowCount();\r
-       Object get(int row, int column);\r
-       Collection<Object> getColumn(int column);\r
-       Collection<Object> getRow(int column);\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.Collection;
+
+
+public interface Matrix {
+
+    int getColumnCount();
+    int getRowCount();
+    Object get(int row, int column);
+    Collection<Object> getColumn(int column);
+    Collection<Object> getRow(int column);
+
+}