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 public interface AstValueVisitor<T> {
16 T visit(AstBoolean astBoolean);
17 T visit(AstDouble astFloat);
18 T visit(AstInteger astInteger);
19 T visit(AstNull astNull);
20 T visit(AstString astString);
21 T visit(AstRange astSheetName);
22 T visit(AstArgList astArgList);
23 T visit(AstApply astApply);
24 T visit(AstRelation astRelation);
25 T visit(AstArithmeticExpression exp);
26 T visit(AstTerm term);
27 T visit(AstFactor factor);
28 T visit(AstIdentifier id);
29 T visit(AstArray array);
30 T visit(AstNothing array);
31 T visit(AstArrayFormulaReference ref);