Coverage report

  %line %branch
be.dvw.administration.model.PayingMember
0% 
0% 

 1  
 /*
 2  
  * Created on Jun 20, 2005
 3  
  */
 4  
 
 5  
 package be.dvw.administration.model;
 6  
 
 7  
 /**
 8  
  * @author Gregory Van Seghbroeck
 9  
  *
 10  
  */
 11  0
 public class PayingMember extends Member implements PayingEntity {
 12  
     private boolean payed;
 13  
     private String payment;
 14  
     //TODO halen uit config file
 15  0
     private double amount = 10.0;
 16  
     
 17  
     
 18  
     /**
 19  
      * @return Returns the amount.
 20  
      */
 21  
     public double getAmount() {
 22  0
         return amount;
 23  
     }
 24  
     /**
 25  
      * @param amount The amount to set.
 26  
      */
 27  
     public void setAmount(double amount) {
 28  0
         this.amount = amount;
 29  0
     }
 30  
     /**
 31  
      * @return Returns the payed.
 32  
      */
 33  
     public boolean isPayed() {
 34  0
         return payed;
 35  
     }
 36  
     /**
 37  
      * @param payed The payed to set.
 38  
      */
 39  
     public void setPayed(boolean payed) {
 40  0
         this.payed = payed;
 41  0
     }
 42  
     /**
 43  
      * @return Returns the payment.
 44  
      */
 45  
     public String getPayment() {
 46  0
         return payment;
 47  
     }
 48  
     /**
 49  
      * @param payment The payment to set.
 50  
      */
 51  
     public void setPayment(String payment) {
 52  0
         this.payment = payment;
 53  0
     }
 54  
 }

This report is generated by jcoverage, Maven and Maven JCoverage Plugin.