1 /*******************************************************************************
\r
2 * Copyright (c) 2007, 2010 Association for Decentralized Information Management
\r
3 * in 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
10 * VTT Technical Research Centre of Finland - initial API and implementation
\r
11 *******************************************************************************/
\r
12 package org.simantics.sysdyn.expressionParser;
\r
14 import java.io.StringReader;
\r
15 import java.util.HashMap;
\r
16 import java.util.List;
\r
18 public class TestExpressionParser {
\r
20 static private ExpressionParser parser;
\r
22 public static void parse(String string) {
\r
23 parser.ReInit(new StringReader(string));
\r
26 HashMap<String, List<Token>> references = parser.getReferences();
\r
27 for(String ref : references.keySet()) {
\r
28 System.out.println(ref);
\r
30 } catch (ParseException e) {
\r
31 System.out.println("While parsing " + string + ":");
\r
32 // TODO Auto-generated catch block
\r
33 e.printStackTrace();
\r
37 public static void main(String[] args) {
\r
38 parser = new ExpressionParser(
\r
39 new StringReader("")
\r
42 System.out.println("##");
\r
43 parse("ter2e + moro");
\r
44 System.out.println("##");
\r
45 parse("moro * sqr(4.0) + min(m2ma, moi)");
\r