KickJava   Java API By Example, From Geeks To Geeks.

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


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

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

13 public interface RelationVisitor {
14   void visitTableName(final TableName tn);
15   void visitJoin(final Relation a, final int jointype, final Relation b, final BoolExpression cond);
16   void visitProduct(final Relation a, final Relation b);
17 }
18
Popular Tags