Clover coverage report - Replica - 1.0-Alpha
Coverage timestamp: Dom Fev 1 2004 17:00:58 WET
file stats: LOC: 19   Methods: 1
NCLOC: 12   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
MobileTrxWraper.java - 0% 0% 0%
coverage
 1   
 package mobisnap.common.msql;
 2   
 
 3   
 /**
 4   
  * @version 
 5   
  * @author 
 6   
  */
 7   
 public class MobileTrxWraper
 8   
     implements java.io.Serializable
 9   
 {
 10   
     public MobileTrx mobileTrx;
 11   
     public int clientID;
 12   
     public int trxID;
 13   
     
 14  0
     public MobileTrxWraper( MobileTrx mobileTrx, int clientID, int trxID) {
 15  0
         this.mobileTrx = mobileTrx;
 16  0
         this.clientID = clientID;
 17  0
         this.trxID = trxID;
 18   
     }
 19   
 }