]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.spreadsheet.graph/src/org/simantics/spreadsheet/graph/parser/ast/AstValueVisitor.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.spreadsheet.graph / src / org / simantics / spreadsheet / graph / parser / ast / AstValueVisitor.java
1 /*******************************************************************************\r
2  *  Copyright (c) 2010 Association for Decentralized Information Management in\r
3  *  Industry THTH ry.\r
4  *  All rights reserved. This program and the accompanying materials\r
5  *  are made available under the terms of the Eclipse Public License v1.0\r
6  *  which accompanies this distribution, and is available at\r
7  *  http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  *  Contributors:\r
10  *      VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.spreadsheet.graph.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);\r
21         T visit(AstRange astSheetName);\r
22         T visit(AstArgList astArgList);\r
23         T visit(AstApply astApply);\r
24         T visit(AstRelation astRelation);\r
25         T visit(AstArithmeticExpression exp);\r
26         T visit(AstTerm term);\r
27         T visit(AstFactor factor);\r
28         T visit(AstIdentifier id);\r
29         T visit(AstArray array);\r
30         T visit(AstNothing array);\r
31         T visit(AstArrayFormulaReference ref);\r
32         
33 }