Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1107 Rev 1108
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 appliVersionNumero;
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 licence;
20
	private String licence;
21
	
21
	
22
	private String dateHeureCompilation;
22
	private String dateHeureCompilation;
23
	private String revisionGlobale;
23
	private String revisionGlobale;
24
	private String versionJavaCompilation;
24
	private String versionJavaCompilation;
25
	
25
	
26
	public APropos() {
26
	public APropos() {
27
		// on utilise le dictionnaire d'internationalisation pour lire les variables du fichier javascript
27
		// on utilise le dictionnaire d'internationalisation pour lire les variables du fichier javascript
28
		Dictionary apropos = Dictionary.getDictionary("apropos");
28
		Dictionary apropos = Dictionary.getDictionary("apropos");
29
		appliNom = apropos.get("appliNom");
29
		appliNom = apropos.get("appliNom");
30
		appliCode = apropos.get("appliCode");
30
		appliCode = apropos.get("appliCode");
31
		appliVersionNumero = apropos.get("appliVersionNumero");
31
		appliVersionNom = apropos.get("appliVersionNom");
32
		appliVersionCode = apropos.get("appliVersionCode");
32
		appliVersionCode = apropos.get("appliVersionCode");
33
		developpeurs = apropos.get("developpeurs");
33
		developpeurs = apropos.get("developpeurs");
34
		traducteurs = apropos.get("traducteurs");
34
		traducteurs = apropos.get("traducteurs");
35
		licence = apropos.get("licence");
35
		licence = apropos.get("licence");
36
		dateHeureCompilation = apropos.get("dateHeureCompilation");
36
		dateHeureCompilation = apropos.get("dateHeureCompilation");
37
		revisionGlobale = apropos.get("revisionGlobale");
37
		revisionGlobale = apropos.get("revisionGlobale");
38
		versionJavaCompilation = apropos.get("versionJavaCompilation");
38
		versionJavaCompilation = apropos.get("versionJavaCompilation");
39
		
39
		
40
	}
40
	}
41
 
41
 
42
	public String getAppliNom() {
42
	public String getAppliNom() {
43
		return appliNom;
43
		return appliNom;
44
	}
44
	}
45
	
45
	
46
	public String getAppliCode() {
46
	public String getAppliCode() {
47
		return appliCode;
47
		return appliCode;
48
	}
48
	}
49
	
49
	
50
	public String getAppliVersionNumero() {
50
	public String getAppliVersionNom() {
51
		return appliVersionNumero;
51
		return appliVersionNom;
52
	}
52
	}
53
	
53
	
54
	public String getAppliVersionCode() {
54
	public String getAppliVersionCode() {
55
		return appliVersionCode;
55
		return appliVersionCode;
56
	}
56
	}
57
	
57
	
58
	public String getDeveloppeurs() {
58
	public String getDeveloppeurs() {
59
		return developpeurs;
59
		return developpeurs;
60
	}
60
	}
61
	
61
	
62
	public String getTraducteurs() {
62
	public String getTraducteurs() {
63
		return traducteurs;
63
		return traducteurs;
64
	}
64
	}
65
	
65
	
66
	public String getLicence() {
66
	public String getLicence() {
67
		return licence;
67
		return licence;
68
	}
68
	}
69
	
69
	
70
	public String getDateHeureCompilation() {
70
	public String getDateHeureCompilation() {
71
		return dateHeureCompilation;
71
		return dateHeureCompilation;
72
	}
72
	}
73
	
73
	
74
	public String getRevisionGlobale() {
74
	public String getRevisionGlobale() {
75
		return revisionGlobale;
75
		return revisionGlobale;
76
	}
76
	}
77
	
77
	
78
	public String getVersionJavaCompilation() {
78
	public String getVersionJavaCompilation() {
79
		return versionJavaCompilation;
79
		return versionJavaCompilation;
80
	}
80
	}
81
 
81
 
82
}
82
}