KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > tests > jfun > parsec > mssql > InfixOp


1 /*
2  * Created on 2004-11-15
3  *
4  * Author Ben Yu
5  */

6 package tests.jfun.parsec.mssql;
7
8 /**
9  * @author Ben Yu
10  *
11  * 2004-11-15
12  */

13 abstract class InfixOp implements BinaryOp {
14
15   /*
16    * @see jfun.parsec.mssql.BinaryOp#apply(jfun.parsec.mssql.Expression, jfun.parsec.mssql.Expression)
17    */

18   public Expression apply(Expression e1, Expression e2) {
19     return new ExpressionBinary(e1, this, e2);
20   }
21 }
22
Popular Tags