1 /* JJT: 0.2.2 */ 2 3 package mobisnap.mobile_trx; 4 5 6 public class ASTCompilationUnit extends mobisnap.mobile_trx.SimpleNode { 7 8 public ASTCompilationUnit(int id) { 9 super(id); 10 } 11 12 public ASTCompilationUnit( MobisnapSQL p, int i) { 13 super( p, i); 14 id = i; 15 } 16 17 /*** Accept the visitor. **/ 18 public Object jjtAccept(MobisnapSQLVisitor visitor, Object data) { 19 return visitor.visit(this, data); 20 } 21 22 public void process( int msql_type) throws Exception { 23 super.process( msql_type); 24 MobisnapSQL.transaction.commit(); // commit if execute to the end 25 throw new CommitException(); 26 } 27 }

This page was automatically generated by Maven