| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| IFilmographyModel |
|
| 1.0;1 |
| 1 | package org.jtheque.films.view.impl.models.able; | |
| 2 | ||
| 3 | import org.jtheque.core.managers.view.able.components.IModel; | |
| 4 | ||
| 5 | /** | |
| 6 | * @author Baptiste Wicht | |
| 7 | */ | |
| 8 | public interface IFilmographyModel extends IModel { | |
| 9 | /** | |
| 10 | * Set the filmography. | |
| 11 | * | |
| 12 | * @param filmo The filmography. | |
| 13 | */ | |
| 14 | void setFilmo(Object filmo); | |
| 15 | ||
| 16 | /** | |
| 17 | * Return the filmography. | |
| 18 | * | |
| 19 | * @return The filmography. | |
| 20 | */ | |
| 21 | Object getFilmo(); | |
| 22 | ||
| 23 | /** | |
| 24 | * Set the flag indicating if the view is builded or not. | |
| 25 | */ | |
| 26 | void setBuilded(); | |
| 27 | ||
| 28 | /** | |
| 29 | * Indicate if the view is builded or not. | |
| 30 | * | |
| 31 | * @return true if the view is builded else false,. | |
| 32 | */ | |
| 33 | boolean isBuilded(); | |
| 34 | } |