org.nfunk.jep.ParserVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jep Show documentation
Show all versions of jep Show documentation
JEP is a Java library for parsing and evaluating mathematical expressions.
/* Generated By:JJTree: Do not edit this line. /Users/singularsys/Documents/workspace/jep-newcvs/src/org/nfunk/jep/ParserVisitor.java */
package org.nfunk.jep;
public interface ParserVisitor
{
public Object visit(SimpleNode node, Object data) throws ParseException;
public Object visit(ASTStart node, Object data) throws ParseException;
public Object visit(ASTFunNode node, Object data) throws ParseException;
public Object visit(ASTVarNode node, Object data) throws ParseException;
public Object visit(ASTConstant node, Object data) throws ParseException;
}