Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libGDBMS / src / com / hardcode / gdbms / parser / ASTSQLAndExpr.java @ 466

History | View | Annotate | Download (418 Bytes)

1
package com.hardcode.gdbms.parser;
2

    
3
/* Generated By:JJTree: Do not edit this line. ASTSQLAndExpr.java */
4

    
5
public class ASTSQLAndExpr extends SimpleNode {
6
  public ASTSQLAndExpr(int id) {
7
    super(id);
8
  }
9

    
10
  public ASTSQLAndExpr(SQLEngine p, int id) {
11
    super(p, id);
12
  }
13

    
14

    
15
  /** Accept the visitor. **/
16
  public Object jjtAccept(SQLEngineVisitor visitor, Object data) {
17
    return visitor.visit(this, data);
18
  }
19
}