1 /*2 * Created on 2004-11-163 *4 * Author Ben Yu5 */6 package tests.jfun.parsec.mssql;7 8 /**9 * @author Ben Yu10 *11 * 2004-11-1612 */13 public interface Relation {14 void acceptVisitor(RelationVisitor v);15 }16