| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| IVideoFileView |
|
| 1.0;1 |
| 1 | package org.jtheque.films.view.able; | |
| 2 | ||
| 3 | import org.jtheque.core.managers.view.able.IWindowView; | |
| 4 | import org.jtheque.films.persistence.od.able.Film; | |
| 5 | ||
| 6 | /** | |
| 7 | * A video file view specification. | |
| 8 | * | |
| 9 | * @author Baptiste Wicht | |
| 10 | */ | |
| 11 | public interface IVideoFileView extends IWindowView { | |
| 12 | /** | |
| 13 | * Return the specified file path. | |
| 14 | * | |
| 15 | * @return The specified file path. | |
| 16 | */ | |
| 17 | String getFilePath(); | |
| 18 | ||
| 19 | /** | |
| 20 | * Return the selected film. | |
| 21 | * | |
| 22 | * @return The selected film. | |
| 23 | */ | |
| 24 | Film getFilm(); | |
| 25 | } |