Statistics
| Revision:

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

History | View | Annotate | Download (413 Bytes)

1
package com.hardcode.gdbms.parser;
2
/* Generated By:JJTree: Do not edit this line. ASTSQLUpdate.java */
3

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

    
9
  public ASTSQLUpdate(SQLEngine p, int id) {
10
    super(p, id);
11
  }
12

    
13

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