]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.spreadsheet/src/org/simantics/spreadsheet/solver/formula/parser/ast/AstValueVisitor.java
Adopt spreadsheet changes made in Balas development
[simantics/platform.git] / bundles / org.simantics.spreadsheet / src / org / simantics / spreadsheet / solver / formula / parser / ast / AstValueVisitor.java
1 /*******************************************************************************
2  *  Copyright (c) 2010 Association for Decentralized Information Management in
3  *  Industry THTH ry.
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
8  *
9  *  Contributors:
10  *      VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.spreadsheet.solver.formula.parser.ast;
13
14 public interface AstValueVisitor<T> {
15
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);
32         
33 }