Statistics
| Revision:

root / tags / v1_1_Build_1012 / libraries / libGDBMS / src / main / java / com / hardcode / gdbms / parser / ASTSQLColRef.java @ 12987

History | View | Annotate | Download (414 Bytes)

1 3199 fjp
/* Generated By:JJTree: Do not edit this line. ASTSQLColRef.java */
2
3
package com.hardcode.gdbms.parser;
4
5
public class ASTSQLColRef extends SimpleNode {
6
  public ASTSQLColRef(int id) {
7
    super(id);
8
  }
9
10
  public ASTSQLColRef(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
}