Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
IChoiceFieldsView |
|
| 1.0;1 |
1 | package org.jtheque.films.view.able; | |
2 | ||
3 | /* | |
4 | * This file is part of JTheque. | |
5 | * | |
6 | * JTheque is free software: you can redistribute it and/or modify | |
7 | * it under the terms of the GNU General Public License as published by | |
8 | * the Free Software Foundation, either version 3 of the License. | |
9 | * | |
10 | * JTheque is distributed in the hope that it will be useful, | |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | * GNU General Public License for more details. | |
14 | * | |
15 | * You should have received a copy of the GNU General Public License | |
16 | * along with JTheque. If not, see <http://www.gnu.org/licenses/>. | |
17 | */ | |
18 | ||
19 | import org.jtheque.core.managers.view.able.IWindowView; | |
20 | ||
21 | /** | |
22 | * @author Baptiste Wicht | |
23 | */ | |
24 | public interface IChoiceFieldsView extends IWindowView { | |
25 | /** | |
26 | * Indicate if the box for the kind is selected. | |
27 | * | |
28 | * @return true if the box for the kind is selected else false. | |
29 | */ | |
30 | boolean isBoxKindSelected(); | |
31 | ||
32 | /** | |
33 | * Indicate if the box for the realizer is selected. | |
34 | * | |
35 | * @return true if the box for the realizer is selected else false. | |
36 | */ | |
37 | boolean isBoxRealizerSelected(); | |
38 | ||
39 | /** | |
40 | * Indicate if the box for the year is selected. | |
41 | * | |
42 | * @return true if the box for the year is selected else false. | |
43 | */ | |
44 | boolean isBoxYearSelected(); | |
45 | ||
46 | /** | |
47 | * Indicate if the box for the duration is selected. | |
48 | * | |
49 | * @return true if the box for the duration is selected else false. | |
50 | */ | |
51 | boolean isBoxDurationSelected(); | |
52 | ||
53 | /** | |
54 | * Indicate if the box for the actors is selected. | |
55 | * | |
56 | * @return true if the box for the actors is selected else false. | |
57 | */ | |
58 | boolean isBoxActorsSelected(); | |
59 | ||
60 | /** | |
61 | * Indicate if the box for the image is selected. | |
62 | * | |
63 | * @return true if the box for the image is selected else false. | |
64 | */ | |
65 | boolean isBoxImageSelected(); | |
66 | ||
67 | /** | |
68 | * Indicate if the box for the resume is selected. | |
69 | * | |
70 | * @return true if the box for the resume is selected else false. | |
71 | */ | |
72 | boolean isBoxResumeSelected(); | |
73 | } |