1 /*******************************************************************************
2 * Copyright (c) 2010 Association for Decentralized Information Management in
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
10 * VTT Technical Research Centre of Finland - initial API and implementation
11 *******************************************************************************/
12 package org.simantics.spreadsheet.graph.parser.ast;
14 import org.simantics.spreadsheet.graph.PrintVisitor;
16 public class AstRange implements AstValue {
18 private static final long serialVersionUID = -2612788686679843356L;
20 public static final AstRange REF = new AstRange("#REF!");
22 public String sheetName;
26 public AstRange(String sheetName, String first, String second) {
27 this.sheetName = sheetName;
32 public AstRange(String token) {
33 String[] parts = token.split(":");
34 if(parts.length == 2) {
35 this.first = parts[0];
36 this.second = parts[1];
43 public <T> T accept(AstValueVisitor<T> v) {
47 public boolean isCell() {
48 return second == null;
51 public boolean isRef() {
52 return second==null && "#REF!".equals(first);
55 public AstRange inSheet(String sheetName) {
56 AstRange range = new AstRange(sheetName, first, second);
61 public String toString() {
62 return accept(new PrintVisitor());