]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.spreadsheet/src/org/simantics/spreadsheet/Range.java
SCL API for direct access to SpreadsheetBooks
[simantics/platform.git] / bundles / org.simantics.spreadsheet / src / org / simantics / spreadsheet / Range.java
index b4a31c316f65a794614ec197e93a7172401472d3..5ac98e084d06777fb50ee6e0ea175aa82fbaa2f5 100644 (file)
@@ -39,6 +39,10 @@ public class Range {
         this.startColumn = copy.startColumn;
         this.endColumn = copy.endColumn;
     }
+    
+    public static Range parse(String identifier) {
+        return Spreadsheets.decodeCellAbsolute(identifier);
+    }
 
     public static Range combine(Range from, Range to) {
         return new Range(from.startRow, to.endRow, from.startColumn, to.endColumn);