Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
IFilesContainer |
|
| 1.0;1 |
1 | package org.jtheque.core.managers.core.io; | |
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 java.io.File; | |
20 | ||
21 | /** | |
22 | * @author Baptiste Wicht | |
23 | */ | |
24 | public interface IFilesContainer { | |
25 | /** | |
26 | * Return the launcher file of the application. | |
27 | * | |
28 | * @return The launcher file. | |
29 | */ | |
30 | File getLauncherFile(); | |
31 | ||
32 | /** | |
33 | * Return the log file of the application. | |
34 | * | |
35 | * @return The log file. | |
36 | */ | |
37 | File getLogsFile(); | |
38 | ||
39 | /** | |
40 | * Return the path to the versions file. | |
41 | * | |
42 | * @return The path to the versions file. | |
43 | */ | |
44 | String getVersionsFileURL(); | |
45 | ||
46 | /** | |
47 | * Return the URL to the online help. | |
48 | * | |
49 | * @return The URL to the online help. | |
50 | */ | |
51 | String getOnlineHelpURL(); | |
52 | ||
53 | /** | |
54 | * Return the URL to the forum. | |
55 | * | |
56 | * @return The URL to the forum. | |
57 | */ | |
58 | String getForumURL(); | |
59 | ||
60 | /** | |
61 | * Return the URL to the make donation page. | |
62 | * | |
63 | * @return The URL to the make donation page. | |
64 | */ | |
65 | String getMakeDonationURL(); | |
66 | } |