|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
ASTCompilationUnit.java | - | 0% | 0% | 0% |
|
1 |
/* JJT: 0.2.2 */
|
|
2 |
|
|
3 |
package mobisnap.mobile_trx;
|
|
4 |
|
|
5 |
|
|
6 |
public class ASTCompilationUnit extends mobisnap.mobile_trx.SimpleNode { |
|
7 |
|
|
8 | 0 |
public ASTCompilationUnit(int id) { |
9 | 0 |
super(id);
|
10 |
} |
|
11 |
|
|
12 | 0 |
public ASTCompilationUnit( MobisnapSQL p, int i) { |
13 | 0 |
super( p, i);
|
14 | 0 |
id = i; |
15 |
} |
|
16 |
|
|
17 |
/** Accept the visitor. **/
|
|
18 | 0 |
public Object jjtAccept(MobisnapSQLVisitor visitor, Object data) {
|
19 | 0 |
return visitor.visit(this, data); |
20 |
} |
|
21 |
|
|
22 | 0 |
public void process( int msql_type) throws Exception { |
23 | 0 |
super.process( msql_type);
|
24 | 0 |
MobisnapSQL.transaction.commit(); // commit if execute to the end
|
25 | 0 |
throw new CommitException(); |
26 |
} |
|
27 |
} |
|
28 |
|
|