]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.spreadsheet/src/org/simantics/spreadsheet/Range.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.spreadsheet / src / org / simantics / spreadsheet / Range.java
index f10e9df25f16b73a7a893ee0f185c844efcb7d3f..3c9d4b87e4d6bd62cf949e6371489f7351fd3122 100644 (file)
@@ -1,88 +1,88 @@
-/*******************************************************************************\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
-\r
-public class Range {\r
-       public static final int MAXROWSPEC = Integer.MAX_VALUE;//1048576;//\r
-       public static final int MAXCOLUMNSPEC = Integer.MAX_VALUE;//16384;//\r
-       \r
-    public int startRow;\r
-    public int endRow;\r
-    public int startColumn;\r
-    public int endColumn;\r
-    \r
-    public Range(int startRow, int endRow, int startColumn, int endColumn) {\r
-        this.startRow = startRow;\r
-        this.endRow = endRow;\r
-        this.startColumn = startColumn;\r
-        this.endColumn = endColumn;\r
-        \r
-        if(startRow == -1) this.startRow = MAXROWSPEC;\r
-       if(endRow == -1) this.endRow = MAXROWSPEC;\r
-       if(startColumn == -1) this.startColumn = MAXCOLUMNSPEC;\r
-       if(endColumn == -1) this.endColumn = MAXCOLUMNSPEC;\r
-    }\r
-    \r
-    public Range(Range copy) {\r
-        this.startRow = copy.startRow;\r
-        this.endRow = copy.endRow;\r
-        this.startColumn = copy.startColumn;\r
-        this.endColumn = copy.endColumn;\r
-    }\r
-\r
-    public static Range combine(Range from, Range to) {\r
-        return new Range(from.startRow, to.endRow, from.startColumn, to.endColumn);\r
-    }\r
-    \r
-    public boolean isFull() {\r
-       return endRow == MAXROWSPEC && endColumn == MAXCOLUMNSPEC;\r
-    }\r
-\r
-    public boolean isFullRows() {\r
-       return endRow == MAXROWSPEC;\r
-    }\r
-\r
-    public boolean isFullColumns() {\r
-       return endColumn == MAXCOLUMNSPEC;\r
-    }\r
-\r
-    public int size() {\r
-        return (endRow-startRow + 1) * (endColumn - startColumn + 1);\r
-    }\r
-    \r
-    public int width() {\r
-       return (endColumn - startColumn + 1);\r
-    }\r
-    \r
-    public int height() {\r
-       return (endRow-startRow + 1);\r
-    }\r
-    \r
-    public boolean contains(Range r) {\r
-       if(endRow >= 0) {\r
-               if(r.endRow > endRow) return false;\r
-               if(r.startRow < startRow) return false;\r
-       }\r
-       if(endColumn >= 0) {\r
-               if(r.startColumn < startColumn) return false;\r
-               if(r.endColumn > endColumn) return false;\r
-       }\r
-       return true;\r
-    }\r
-    \r
-    @Override\r
-    public String toString() {\r
-        return "Range[(" + startRow + "," + startColumn + ")-(" + endRow + "," + endColumn + ")]";\r
-    }\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;
+
+
+public class Range {
+       public static final int MAXROWSPEC = Integer.MAX_VALUE;//1048576;//
+       public static final int MAXCOLUMNSPEC = Integer.MAX_VALUE;//16384;//
+       
+    public int startRow;
+    public int endRow;
+    public int startColumn;
+    public int endColumn;
+    
+    public Range(int startRow, int endRow, int startColumn, int endColumn) {
+        this.startRow = startRow;
+        this.endRow = endRow;
+        this.startColumn = startColumn;
+        this.endColumn = endColumn;
+        
+        if(startRow == -1) this.startRow = MAXROWSPEC;
+       if(endRow == -1) this.endRow = MAXROWSPEC;
+       if(startColumn == -1) this.startColumn = MAXCOLUMNSPEC;
+       if(endColumn == -1) this.endColumn = MAXCOLUMNSPEC;
+    }
+    
+    public Range(Range copy) {
+        this.startRow = copy.startRow;
+        this.endRow = copy.endRow;
+        this.startColumn = copy.startColumn;
+        this.endColumn = copy.endColumn;
+    }
+
+    public static Range combine(Range from, Range to) {
+        return new Range(from.startRow, to.endRow, from.startColumn, to.endColumn);
+    }
+    
+    public boolean isFull() {
+       return endRow == MAXROWSPEC && endColumn == MAXCOLUMNSPEC;
+    }
+
+    public boolean isFullRows() {
+       return endRow == MAXROWSPEC;
+    }
+
+    public boolean isFullColumns() {
+       return endColumn == MAXCOLUMNSPEC;
+    }
+
+    public int size() {
+        return (endRow-startRow + 1) * (endColumn - startColumn + 1);
+    }
+    
+    public int width() {
+       return (endColumn - startColumn + 1);
+    }
+    
+    public int height() {
+       return (endRow-startRow + 1);
+    }
+    
+    public boolean contains(Range r) {
+       if(endRow >= 0) {
+               if(r.endRow > endRow) return false;
+               if(r.startRow < startRow) return false;
+       }
+       if(endColumn >= 0) {
+               if(r.startColumn < startColumn) return false;
+               if(r.endColumn > endColumn) return false;
+       }
+       return true;
+    }
+    
+    @Override
+    public String toString() {
+        return "Range[(" + startRow + "," + startColumn + ")-(" + endRow + "," + endColumn + ")]";
+    }
+    
+}