Subversion Repositories eFlore/Applications.coel

Rev

Rev 1417 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1417 Rev 1549
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 testeurs;
21
	private String licence;
21
	private String licence;
22
	
22
	
23
	private String dateHeureCompilation;
23
	private String dateHeureCompilation;
24
	private String revisionGlobale;
24
	private String revisionGlobale;
25
	private String revisionGlobaleJrest;
25
	private String revisionGlobaleServices;
26
	private String versionJavaCompilation;
26
	private String versionJavaCompilation;
27
	
27
	
28
	public APropos() {
28
	public APropos() {
29
		// 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
30
		Dictionary apropos = Dictionary.getDictionary("apropos");
30
		Dictionary apropos = Dictionary.getDictionary("apropos");
31
		appliNom = apropos.get("appliNom");
31
		appliNom = apropos.get("appliNom");
32
		appliCode = apropos.get("appliCode");
32
		appliCode = apropos.get("appliCode");
33
		appliVersionNom = apropos.get("appliVersionNom");
33
		appliVersionNom = apropos.get("appliVersionNom");
34
		appliVersionCode = apropos.get("appliVersionCode");
34
		appliVersionCode = apropos.get("appliVersionCode");
35
		developpeurs = apropos.get("developpeurs");
35
		developpeurs = apropos.get("developpeurs");
36
		testeurs = apropos.get("testeurs");
36
		testeurs = apropos.get("testeurs");
37
		traducteurs = apropos.get("traducteurs");
37
		traducteurs = apropos.get("traducteurs");
38
		licence = apropos.get("licence");
38
		licence = apropos.get("licence");
39
		dateHeureCompilation = apropos.get("dateHeureCompilation");
39
		dateHeureCompilation = apropos.get("dateHeureCompilation");
40
		revisionGlobale = apropos.get("revisionGlobale");
40
		revisionGlobale = apropos.get("revisionGlobale");
41
		revisionGlobaleJrest = apropos.get("revisionGlobaleJrest");
41
		revisionGlobaleServices = apropos.get("revisionGlobaleServices");
42
		versionJavaCompilation = apropos.get("versionJavaCompilation");
42
		versionJavaCompilation = apropos.get("versionJavaCompilation");
43
	}
43
	}
44
 
44
 
45
	public String getAppliNom() {
45
	public String getAppliNom() {
46
		return appliNom;
46
		return appliNom;
47
	}
47
	}
48
	
48
	
49
	public String getAppliCode() {
49
	public String getAppliCode() {
50
		return appliCode;
50
		return appliCode;
51
	}
51
	}
52
	
52
	
53
	public String getAppliVersionNom() {
53
	public String getAppliVersionNom() {
54
		return appliVersionNom;
54
		return appliVersionNom;
55
	}
55
	}
56
	
56
	
57
	public String getAppliVersionCode() {
57
	public String getAppliVersionCode() {
58
		return appliVersionCode;
58
		return appliVersionCode;
59
	}
59
	}
60
	
60
	
61
	public String getDeveloppeurs() {
61
	public String getDeveloppeurs() {
62
		return developpeurs;
62
		return developpeurs;
63
	}
63
	}
64
	
64
	
65
	public String getTraducteurs() {
65
	public String getTraducteurs() {
66
		return traducteurs;
66
		return traducteurs;
67
	}
67
	}
68
	
68
	
69
	public String getLicence() {
69
	public String getLicence() {
70
		return licence;
70
		return licence;
71
	}
71
	}
72
	
72
	
73
	public String getDateHeureCompilation() {
73
	public String getDateHeureCompilation() {
74
		return dateHeureCompilation;
74
		return dateHeureCompilation;
75
	}
75
	}
76
	
76
	
77
	public String getRevisionGlobale() {
77
	public String getRevisionGlobale() {
78
		return revisionGlobale;
78
		return revisionGlobale;
79
	}
79
	}
80
	
80
	
81
	public String getRevisionGlobaleJrest() {
81
	public String getRevisionGlobaleServices() {
82
		return revisionGlobaleJrest;
82
		return revisionGlobaleServices;
83
	}
83
	}
84
	
84
	
85
	public String getVersionJavaCompilation() {
85
	public String getVersionJavaCompilation() {
86
		return versionJavaCompilation;
86
		return versionJavaCompilation;
87
	}
87
	}
88
 
88
 
89
	public String getTesteurs() {
89
	public String getTesteurs() {
90
		return testeurs;
90
		return testeurs;
91
	}
91
	}
92
 
92
 
93
}
93
}