Subversion Repositories eFlore/Applications.coel

Rev

Rev 1415 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1415 Rev 1417
1
package org.tela_botanica.client.configuration;
1
package org.tela_botanica.client.configuration;
2
 
2
 
3
import com.google.gwt.i18n.client.Dictionary;
3
import com.google.gwt.i18n.client.Dictionary;
4
 
4
 
5
/**
5
/**
6
 * Classe chargeant certains paramètres de configuration à partir d'un fichier
6
 * Classe chargeant certains paramètres de configuration à partir d'un fichier
7
 * javascript (config.js)
7
 * javascript (config.js)
8
 * 
8
 * 
9
 * @author Aurélien PERONNET
9
 * @author Aurélien PERONNET
10
 * 
10
 * 
11
 */
11
 */
12
public class APropos {
12
public class APropos {
13
	
13
	
14
	private String appliNom;
14
	private String appliNom;
15
	private String appliCode;
15
	private String appliCode;
16
	private String appliVersionNom;
16
	private String appliVersionNom;
17
	private String appliVersionCode;
17
	private String appliVersionCode;
18
	private String developpeurs;
18
	private String developpeurs;
19
	private String traducteurs;
19
	private String traducteurs;
-
 
20
	private String testeurs;
20
	private String licence;
21
	private String licence;
21
	
22
	
22
	private String dateHeureCompilation;
23
	private String dateHeureCompilation;
23
	private String revisionGlobale;
24
	private String revisionGlobale;
-
 
25
	private String revisionGlobaleJrest;
24
	private String versionJavaCompilation;
26
	private String versionJavaCompilation;
25
	
27
	
26
	public APropos() {
28
	public APropos() {
27
		// on utilise le dictionnaire d'internationalisation pour lire les variables du fichier javascript
29
		// on utilise le dictionnaire d'internationalisation pour lire les variables du fichier javascript
28
		Dictionary apropos = Dictionary.getDictionary("apropos");
30
		Dictionary apropos = Dictionary.getDictionary("apropos");
29
		appliNom = apropos.get("appliNom");
31
		appliNom = apropos.get("appliNom");
30
		appliCode = apropos.get("appliCode");
32
		appliCode = apropos.get("appliCode");
31
		appliVersionNom = apropos.get("appliVersionNom");
33
		appliVersionNom = apropos.get("appliVersionNom");
32
		appliVersionCode = apropos.get("appliVersionCode");
34
		appliVersionCode = apropos.get("appliVersionCode");
33
		developpeurs = apropos.get("developpeurs");
35
		developpeurs = apropos.get("developpeurs");
-
 
36
		testeurs = apropos.get("testeurs");
34
		traducteurs = apropos.get("traducteurs");
37
		traducteurs = apropos.get("traducteurs");
35
		licence = apropos.get("licence");
38
		licence = apropos.get("licence");
36
		dateHeureCompilation = apropos.get("dateHeureCompilation");
39
		dateHeureCompilation = apropos.get("dateHeureCompilation");
37
		revisionGlobale = apropos.get("revisionGlobale");
40
		revisionGlobale = apropos.get("revisionGlobale");
-
 
41
		revisionGlobaleJrest = apropos.get("revisionGlobaleJrest");
38
		versionJavaCompilation = apropos.get("versionJavaCompilation");
42
		versionJavaCompilation = apropos.get("versionJavaCompilation");
39
		
-
 
40
	}
43
	}
41
 
44
 
42
	public String getAppliNom() {
45
	public String getAppliNom() {
43
		return appliNom;
46
		return appliNom;
44
	}
47
	}
45
	
48
	
46
	public String getAppliCode() {
49
	public String getAppliCode() {
47
		return appliCode;
50
		return appliCode;
48
	}
51
	}
49
	
52
	
50
	public String getAppliVersionNom() {
53
	public String getAppliVersionNom() {
51
		return appliVersionNom;
54
		return appliVersionNom;
52
	}
55
	}
53
	
56
	
54
	public String getAppliVersionCode() {
57
	public String getAppliVersionCode() {
55
		return appliVersionCode;
58
		return appliVersionCode;
56
	}
59
	}
57
	
60
	
58
	public String getDeveloppeurs() {
61
	public String getDeveloppeurs() {
59
		return developpeurs;
62
		return developpeurs;
60
	}
63
	}
61
	
64
	
62
	public String getTraducteurs() {
65
	public String getTraducteurs() {
63
		return traducteurs;
66
		return traducteurs;
64
	}
67
	}
65
	
68
	
66
	public String getLicence() {
69
	public String getLicence() {
67
		return licence;
70
		return licence;
68
	}
71
	}
69
	
72
	
70
	public String getDateHeureCompilation() {
73
	public String getDateHeureCompilation() {
71
		return dateHeureCompilation;
74
		return dateHeureCompilation;
72
	}
75
	}
73
	
76
	
74
	public String getRevisionGlobale() {
77
	public String getRevisionGlobale() {
75
		return revisionGlobale;
78
		return revisionGlobale;
76
	}
79
	}
-
 
80
	
-
 
81
	public String getRevisionGlobaleJrest() {
-
 
82
		return revisionGlobaleJrest;
-
 
83
	}
77
	
84
	
78
	public String getVersionJavaCompilation() {
85
	public String getVersionJavaCompilation() {
79
		return versionJavaCompilation;
86
		return versionJavaCompilation;
80
	}
87
	}
-
 
88
 
-
 
89
	public String getTesteurs() {
-
 
90
		return testeurs;
-
 
91
	}
81
 
92
 
82
}
93
}