1 /* JJT: 0.2.2 */ 2 3 package mobisnap.mobile_trx; 4 5 /*** 6 * Implements 7 */ 8 public class ASTPLSQLBlockStatement extends mobisnap.mobile_trx.SimpleNode { 9 boolean declarations; 10 11 12 public ASTPLSQLBlockStatement(int id) { 13 super(id); 14 declarations = false; 15 } 16 17 public ASTPLSQLBlockStatement( MobisnapSQL p, int i) { 18 super( p, i); 19 id = i; 20 declarations = false; 21 } 22 23 /*** Accept the visitor. **/ 24 public Object jjtAccept(MobisnapSQLVisitor visitor, Object data) { 25 return visitor.visit(this, data); 26 } 27 28 public void process( int msql_type) throws Exception { 29 try { 30 MobisnapSQL.names.inScope(); 31 super.process( msql_type); 32 } finally { 33 MobisnapSQL.names.outScope(); 34 } 35 } 36 37 }

This page was automatically generated by Maven