Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 907 Rev 1023
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 developpeurs;
-
 
15
	private String traducteurs;
-
 
16
	private String licence;
13
	
17
	
14
	private String dateHeureCompilation;
18
	private String dateHeureCompilation;
15
	private String revisionGlobale;
19
	private String revisionGlobale;
Line 16... Line 20...
16
	private String versionJavaCompilation;
20
	private String versionJavaCompilation;
17
	
21
	
18
	public APropos() {
22
	public APropos() {
-
 
23
		// on utilise le dictionnaire d'internationalisation pour lire les variables du fichier javascript
-
 
24
		Dictionary apropos = Dictionary.getDictionary("apropos");
-
 
25
		developpeurs = apropos.get("developpeurs");
19
		// on utilise le dictionnaire d'internationalisation pour lire les variables du fichier javascript
26
		traducteurs = apropos.get("traducteurs");
20
		Dictionary apropos = Dictionary.getDictionary("apropos");
27
		licence = apropos.get("licence");
21
		dateHeureCompilation = apropos.get("dateHeureCompilation");
28
		dateHeureCompilation = apropos.get("dateHeureCompilation");
-
 
29
		revisionGlobale = apropos.get("revisionGlobale");
22
		revisionGlobale = apropos.get("revisionGlobale");
30
		versionJavaCompilation = apropos.get("versionJavaCompilation");
Line -... Line 31...
-
 
31
		
-
 
32
	}
-
 
33
 
-
 
34
	public String getDeveloppeurs() {
-
 
35
		return developpeurs;
-
 
36
	}
-
 
37
	
-
 
38
	public String getTraducteurs() {
-
 
39
		return traducteurs;
-
 
40
	}
-
 
41
	
-
 
42
	public String getLicence() {
23
		versionJavaCompilation = apropos.get("versionJavaCompilation");
43
		return licence;
24
	}
44
	}
25
 
45
	
Line 26... Line 46...
26
	public String getDateHeureCompilation() {
46
	public String getDateHeureCompilation() {