1 /*2 * Created on 2004-11-153 *4 * Author Ben Yu5 */6 package tests.jfun.parsec.mssql;7 8 /**9 * @author Ben Yu10 *11 * 2004-11-1512 */13 public interface Expression {14 int getPrecedence();15 void acceptVisitor(ExpressionVisitor v);16 }17