]> 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 9dfe56e9563d829fdf7b13d9f5ee50161ab32462..8288cb6f38e6d46c8db875e1e93eddf2d00e84e1 100644 (file)
@@ -15,11 +15,11 @@ 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);
-       
+
+    int getColumnCount();
+    int getRowCount();
+    Object get(int row, int column);
+    Collection<Object> getColumn(int column);
+    Collection<Object> getRow(int column);
+
 }