| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| IBorrowerModel |
|
| 1.0;1 |
| 1 | package org.jtheque.primary.view.impl.models.able; | |
| 2 | ||
| 3 | import org.jtheque.core.managers.view.able.components.IModel; | |
| 4 | import org.jtheque.primary.od.able.Person; | |
| 5 | ||
| 6 | /** | |
| 7 | * @author Baptiste Wicht | |
| 8 | */ | |
| 9 | public interface IBorrowerModel extends IModel { | |
| 10 | /** | |
| 11 | * Set the borrower. | |
| 12 | * | |
| 13 | * @param borrower The borrower to set. | |
| 14 | */ | |
| 15 | void setBorrower(Person borrower); | |
| 16 | ||
| 17 | /** | |
| 18 | * Return the current borrower. | |
| 19 | * | |
| 20 | * @return The current borrower. | |
| 21 | */ | |
| 22 | Person getBorrower(); | |
| 23 | } |