Clover coverage report - Replica - 1.0-Alpha
Coverage timestamp: Dom Fev 1 2004 17:00:58 WET
file stats: LOC: 38   Methods: 4
NCLOC: 24   Classes: 1
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
ASTPLSQLBlockStatement.java - 0% 0% 0%
coverage
 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  0
     public ASTPLSQLBlockStatement(int id) {
 13  0
         super(id);
 14  0
         declarations = false;
 15   
     }
 16   
 
 17  0
     public ASTPLSQLBlockStatement( MobisnapSQL    p, int i) {
 18  0
         super( p, i);
 19  0
         id = i;
 20  0
         declarations = false;
 21   
     }
 22   
     
 23   
     /** Accept the visitor. **/
 24  0
     public Object jjtAccept(MobisnapSQLVisitor visitor, Object data) {
 25  0
         return visitor.visit(this, data);
 26   
     }
 27   
     
 28  0
     public void process( int msql_type) throws Exception {
 29  0
         try {
 30  0
             MobisnapSQL.names.inScope();
 31  0
             super.process( msql_type);
 32   
         } finally {
 33  0
             MobisnapSQL.names.outScope();
 34   
         }
 35   
     }
 36   
 
 37   
 }
 38