Clover coverage report - Replica - 1.0-Alpha
Coverage timestamp: Dom Fev 1 2004 17:00:58 WET
file stats: LOC: 34   Methods: 4
NCLOC: 18   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
ASTTypeDeclaration.java - 0% 0% 0%
coverage
 1   
 /* JJT:    0.2.2 */
 2   
 
 3   
 package    mobisnap.mobile_trx;
 4   
 
 5   
 /**
 6   
  * Implements short-circuit OR
 7   
  */
 8   
 public class ASTTypeDeclaration extends mobisnap.mobile_trx.SimpleNode {
 9   
     public ASTBasicDataTypeDeclaration bdtd;
 10   
     
 11  0
     public ASTTypeDeclaration(int id) {
 12  0
         super(id);
 13   
     }
 14   
 
 15  0
     public ASTTypeDeclaration( MobisnapSQL p, int i) {
 16  0
         super( p, i);
 17  0
         id = i;
 18   
     }
 19   
 
 20   
     /** Accept the visitor. **/
 21  0
     public Object jjtAccept(MobisnapSQLVisitor visitor, Object data) {
 22  0
         return visitor.visit(this, data);
 23   
     }
 24   
     
 25   
     /**
 26   
      * Returns a vriable that is an instance of the defined type
 27   
      */
 28  0
     public MSQLTVariable getInstance( boolean constant, boolean notnull)
 29   
             throws Exception {
 30  0
         return bdtd.getInstance( constant, notnull);
 31   
     }
 32   
     
 33   
 }
 34