Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ApplicationProperties |
|
| 1.0;1 |
1 | package org.jtheque.core.managers.core.application; | |
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 | /** | |
20 | * Represent the internationalizable properties of an application. | |
21 | * | |
22 | * @author Baptiste Wicht | |
23 | */ | |
24 | public interface ApplicationProperties { | |
25 | /** | |
26 | * Return the name of the application. | |
27 | * | |
28 | * @return The name of the application. | |
29 | */ | |
30 | String getName(); | |
31 | ||
32 | /** | |
33 | * Return the author of the application. | |
34 | * | |
35 | * @return The author of the application. | |
36 | */ | |
37 | String getAuthor(); | |
38 | ||
39 | /** | |
40 | * Return the email of the author of the application. | |
41 | * | |
42 | * @return The email of the author of the application. | |
43 | */ | |
44 | String getEmail(); | |
45 | ||
46 | /** | |
47 | * Return the site of the application. | |
48 | * | |
49 | * @return The site of the application. | |
50 | */ | |
51 | String getSite(); | |
52 | ||
53 | /** | |
54 | * Return the copyright of the application. | |
55 | * | |
56 | * @return The copyright of the application. | |
57 | */ | |
58 | String getCopyright(); | |
59 | } |