| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| IAutoAddModel |
|
| 1.0;1 |
| 1 | package org.jtheque.films.view.impl.models.able; | |
| 2 | ||
| 3 | import org.jtheque.core.managers.view.able.components.IModel; | |
| 4 | import org.jtheque.films.services.impl.utils.web.FilmResult; | |
| 5 | ||
| 6 | import java.util.Collection; | |
| 7 | ||
| 8 | /** | |
| 9 | * @author Baptiste Wicht | |
| 10 | */ | |
| 11 | public interface IAutoAddModel extends IModel { | |
| 12 | /** | |
| 13 | * Return the results of the search. | |
| 14 | * | |
| 15 | * @return A list of the results of the search. | |
| 16 | */ | |
| 17 | Collection<FilmResult> getResults(); | |
| 18 | ||
| 19 | /** | |
| 20 | * Set the results of the search. | |
| 21 | * | |
| 22 | * @param results The results to set. | |
| 23 | */ | |
| 24 | void setResults(Collection<FilmResult> results); | |
| 25 | } |