Clover coverage report - Replica - 1.0-Alpha
Coverage timestamp: Dom Fev 1 2004 17:00:58 WET
file stats: LOC: 21   Methods: 3
NCLOC: 13   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
SQLNull.java - 0% 0% 0%
coverage
 1   
 package mobisnap.mobile_trx;
 2   
 
 3   
 /**
 4   
  * Class to represent the NULL sql value
 5   
  */
 6   
 public class SQLNull
 7   
 {
 8   
     static SQLNull instance = new SQLNull();
 9   
     
 10  0
     public SQLNull() {
 11   
     }
 12   
     
 13  0
     public static SQLNull getInstance() {
 14  0
         return instance;
 15   
     }
 16   
     
 17  0
     public String toString() {
 18  0
         return "NULL";
 19   
     }
 20   
 }
 21