Subversion Repositories eFlore/Applications.coel

Rev

Rev 1549 | Details | Compare with Previous | Last modification | View Log | RSS feed

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