Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 470 Rev 493
Line 1... Line 1...
1
package org.tela_botanica.client;
1
package org.tela_botanica.client;
Line 2... Line 2...
2
 
2
 
-
 
3
import org.tela_botanica.client.i18n.AppliConstantes;
3
import org.tela_botanica.client.i18n.AppliConstantes;
4
import org.tela_botanica.client.images.Images;
4
import org.tela_botanica.client.modeles.Configuration;
5
import org.tela_botanica.client.modeles.Configuration;
5
import org.tela_botanica.client.modeles.MenuApplicationId;
6
import org.tela_botanica.client.modeles.MenuApplicationId;
Line 6... Line 7...
6
import org.tela_botanica.client.vues.PopupChargement;
7
import org.tela_botanica.client.vues.PopupChargement;
Line 12... Line 13...
12
 
13
 
Line 13... Line 14...
13
public class Coel implements EntryPoint {
14
public class Coel implements EntryPoint {
14
 
15
 
-
 
16
	private AppliConstantes i18nC = null;
Line 15... Line 17...
15
	private AppliConstantes i18nC = null;
17
	private Mediateur mediateur = null;
16
	private Mediateur mediateur = null;
18
	public static final Images IMAGES = GWT.create(Images.class);
Line 17... Line 19...
17
	
19
	
Line 30... Line 32...
30
	
32
	
31
	protected void initialiserRegistre() {
33
	protected void initialiserRegistre() {
32
		Registry.register(RegistreId.APPLI_NOM, i18nC.appliNom());
34
		Registry.register(RegistreId.APPLI_NOM, i18nC.appliNom());
33
		Registry.register(RegistreId.APPLI_CODE, i18nC.appliCode());
35
		Registry.register(RegistreId.APPLI_CODE, i18nC.appliCode());
34
		Registry.register(RegistreId.APPLI_VERSION, i18nC.appliVersion());
36
		Registry.register(RegistreId.APPLI_VERSION, i18nC.appliVersion());
35
		Registry.register(RegistreId.APPLI_REVISION, "$Revision: 470 $");
37
		Registry.register(RegistreId.APPLI_REVISION, "$Revision: 493 $");
36
		Registry.register(RegistreId.CONFIG, new Configuration());
38
		Registry.register(RegistreId.CONFIG, new Configuration());
37
		Registry.register(RegistreId.POPUP_CHARGEMENT, new PopupChargement());
39
		Registry.register(RegistreId.POPUP_CHARGEMENT, new PopupChargement());
Line 38... Line 40...
38
	}
40
	}