Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ISplashView |
|
| 1.0;1 |
1 | package org.jtheque.core.managers.view.able.components; | |
2 | ||
3 | import org.jdesktop.jxlayer.plaf.LayerUI; | |
4 | ||
5 | import javax.swing.JComponent; | |
6 | ||
7 | /* | |
8 | * This file is part of JTheque. | |
9 | * | |
10 | * JTheque is free software: you can redistribute it and/or modify | |
11 | * it under the terms of the GNU General Public License as published by | |
12 | * the Free Software Foundation, either version 3 of the License. | |
13 | * | |
14 | * JTheque is distributed in the hope that it will be useful, | |
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 | * GNU General Public License for more details. | |
18 | * | |
19 | * You should have received a copy of the GNU General Public License | |
20 | * along with JTheque. If not, see <http://www.gnu.org/licenses/>. | |
21 | */ | |
22 | ||
23 | /** | |
24 | * A splash screen view specification. | |
25 | * | |
26 | * @author Baptiste Wicht | |
27 | */ | |
28 | public interface ISplashView { | |
29 | /** | |
30 | * Appears and animate the view. | |
31 | */ | |
32 | void appearsAndAnimate(); | |
33 | ||
34 | /** | |
35 | * Disappear. | |
36 | */ | |
37 | void disappear(); | |
38 | ||
39 | /** | |
40 | * Return the implementation of the view. | |
41 | * | |
42 | * @return The implementation of the view. | |
43 | */ | |
44 | LayerUI<JComponent> getImpl(); | |
45 | } |