Subversion Repositories eFlore/Applications.coel

Rev

Rev 1107 | Rev 1415 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1107 Rev 1108
Line 11... Line 11...
11
 */
11
 */
12
public class APropos {
12
public class APropos {
Line 13... Line 13...
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;
Line 26... Line 26...
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");
Line 45... Line 45...
45
	
45
	
46
	public String getAppliCode() {
46
	public String getAppliCode() {
47
		return appliCode;
47
		return appliCode;
Line 48... Line 48...
48
	}
48
	}
49
	
49
	
50
	public String getAppliVersionNumero() {
50
	public String getAppliVersionNom() {
Line 51... Line 51...
51
		return appliVersionNumero;
51
		return appliVersionNom;
52
	}
52
	}
53
	
53