001package gudusoft.gsqlparser.nodes; 002 003/** 004 * Openedge with clause in select statement. 005 */ 006public class TWithTableLock extends TParseTreeNode { 007 008 public void accept(TParseTreeVisitor v){ 009 v.preVisit(this); 010 v.postVisit(this); 011 } 012 013 public void acceptChildren(TParseTreeVisitor v){ 014 v.preVisit(this); 015 v.postVisit(this); 016 } 017 018}