Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1023 Rev 1107
Line 9... Line 9...
9
 * @author Aurélien PERONNET
9
 * @author Aurélien PERONNET
10
 * 
10
 * 
11
 */
11
 */
12
public class APropos {
12
public class APropos {
Line -... Line 13...
-
 
13
	
-
 
14
	private String appliNom;
-
 
15
	private String appliCode;
-
 
16
	private String appliVersionNumero;
13
	
17
	private String appliVersionCode;
14
	private String developpeurs;
18
	private String developpeurs;
15
	private String traducteurs;
19
	private String traducteurs;
Line 16... Line 20...
16
	private String licence;
20
	private String licence;
Line 20... Line 24...
20
	private String versionJavaCompilation;
24
	private String versionJavaCompilation;
Line 21... Line 25...
21
	
25
	
22
	public APropos() {
26
	public APropos() {
23
		// 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");
-
 
29
		appliNom = apropos.get("appliNom");
-
 
30
		appliCode = apropos.get("appliCode");
-
 
31
		appliVersionNumero = apropos.get("appliVersionNumero");
24
		Dictionary apropos = Dictionary.getDictionary("apropos");
32
		appliVersionCode = apropos.get("appliVersionCode");
25
		developpeurs = apropos.get("developpeurs");
33
		developpeurs = apropos.get("developpeurs");
26
		traducteurs = apropos.get("traducteurs");
34
		traducteurs = apropos.get("traducteurs");
27
		licence = apropos.get("licence");
35
		licence = apropos.get("licence");
28
		dateHeureCompilation = apropos.get("dateHeureCompilation");
36
		dateHeureCompilation = apropos.get("dateHeureCompilation");
29
		revisionGlobale = apropos.get("revisionGlobale");
37
		revisionGlobale = apropos.get("revisionGlobale");
Line 30... Line 38...
30
		versionJavaCompilation = apropos.get("versionJavaCompilation");
38
		versionJavaCompilation = apropos.get("versionJavaCompilation");
Line -... Line 39...
-
 
39
		
-
 
40
	}
-
 
41
 
-
 
42
	public String getAppliNom() {
-
 
43
		return appliNom;
-
 
44
	}
-
 
45
	
-
 
46
	public String getAppliCode() {
-
 
47
		return appliCode;
-
 
48
	}
-
 
49
	
-
 
50
	public String getAppliVersionNumero() {
-
 
51
		return appliVersionNumero;
-
 
52
	}
-
 
53
	
-
 
54
	public String getAppliVersionCode() {
31
		
55
		return appliVersionCode;
32
	}
56
	}
33
 
57
	
Line 34... Line 58...
34
	public String getDeveloppeurs() {
58
	public String getDeveloppeurs() {