Clover coverage report - Replica - 1.0-Alpha
Coverage timestamp: Dom Fev 1 2004 17:00:58 WET
file stats: LOC: 25   Methods: 3
NCLOC: 15   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
ReservationInfo.java - 0% 0% 0%
coverage
 1   
 package mobisnap.common;
 2   
 
 3   
 
 4   
     /**
 5   
     * @version 28-Mar-2001
 6   
     * @author 
 7   
     **/
 8   
 public class ReservationInfo implements java.io.Serializable {
 9   
     private String username;
 10   
     private String reservationData;
 11   
     
 12  0
     public ReservationInfo( String username, String reservationData) 
 13   
     {
 14  0
         this.username = username;
 15  0
         this.reservationData = reservationData;
 16   
     }
 17   
     
 18  0
     public String getUsername(){
 19  0
         return username;
 20   
     }
 21   
     
 22  0
     public String getReservation(){
 23  0
         return reservationData;
 24   
     }
 25   
 }