| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| Lending |
|
| 1.0;1 |
| 1 | package org.jtheque.primary.od.able; | |
| 2 | ||
| 3 | import org.jtheque.primary.od.impl.temp.LendingTemporaryContext; | |
| 4 | import org.jtheque.utils.bean.IntDate; | |
| 5 | ||
| 6 | /** | |
| 7 | * @author Baptiste Wicht | |
| 8 | */ | |
| 9 | public interface Lending extends PrimaryData { | |
| 10 | /** | |
| 11 | * Set the date of the lending. | |
| 12 | * | |
| 13 | * @param date The date of the lending. | |
| 14 | */ | |
| 15 | void setDate(IntDate date); | |
| 16 | ||
| 17 | /** | |
| 18 | * Return the date of the lending. | |
| 19 | * | |
| 20 | * @return The date. | |
| 21 | */ | |
| 22 | IntDate getDate(); | |
| 23 | ||
| 24 | /** | |
| 25 | * Set the person. | |
| 26 | * | |
| 27 | * @param thePerson The person. | |
| 28 | */ | |
| 29 | void setThePerson(Person thePerson); | |
| 30 | ||
| 31 | /** | |
| 32 | * Return the person of the lending. | |
| 33 | * | |
| 34 | * @return The person of the lending. | |
| 35 | */ | |
| 36 | Person getThePerson(); | |
| 37 | ||
| 38 | /** | |
| 39 | * Set the other of the lending. | |
| 40 | * | |
| 41 | * @param other The other of the lending. | |
| 42 | */ | |
| 43 | void setTheOther(int other); | |
| 44 | ||
| 45 | /** | |
| 46 | * Return the other. | |
| 47 | * | |
| 48 | * @return The other. | |
| 49 | */ | |
| 50 | int getTheOther(); | |
| 51 | ||
| 52 | @Override | |
| 53 | LendingTemporaryContext getTemporaryContext(); | |
| 54 | } |