View Javadoc

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  public class PayingMember extends Member implements PayingEntity {
12      private boolean payed;
13      private String payment;
14      //TODO halen uit config file
15      private double amount = 10.0;
16      
17      
18      /***
19       * @return Returns the amount.
20       */
21      public double getAmount() {
22          return amount;
23      }
24      /***
25       * @param amount The amount to set.
26       */
27      public void setAmount(double amount) {
28          this.amount = amount;
29      }
30      /***
31       * @return Returns the payed.
32       */
33      public boolean isPayed() {
34          return payed;
35      }
36      /***
37       * @param payed The payed to set.
38       */
39      public void setPayed(boolean payed) {
40          this.payed = payed;
41      }
42      /***
43       * @return Returns the payment.
44       */
45      public String getPayment() {
46          return payment;
47      }
48      /***
49       * @param payment The payment to set.
50       */
51      public void setPayment(String payment) {
52          this.payment = payment;
53      }
54  }