| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| IAutoImportFilm |
|
| 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 | import java.util.Collection; | |
| 6 | ||
| 7 | /** | |
| 8 | * @author Baptiste Wicht | |
| 9 | */ | |
| 10 | public interface IAutoImportFilm extends IModel { | |
| 11 | /** | |
| 12 | * Return the results of the search. | |
| 13 | * | |
| 14 | * @return A list of the results of the search. | |
| 15 | */ | |
| 16 | Collection<String> getTitles(); | |
| 17 | ||
| 18 | /** | |
| 19 | * Set the results of the search. | |
| 20 | * | |
| 21 | * @param titles The results to set. | |
| 22 | */ | |
| 23 | void setTitles(Collection<String> titles); | |
| 24 | } |