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 interface PayingEntity { 12 /*** 13 * @return Returns the amount to be payed 14 */ 15 public double getAmount(); 16 /*** 17 * @return Returns the amount is payed 18 */ 19 public boolean isPayed(); 20 /*** 21 * @return Returns the betalingswijze 22 */ 23 public String getPayment(); 24 25 }