Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1428 Rev 1509
Line 1... Line 1...
1
package org.tela_botanica.client;
1
package org.tela_botanica.client;
Line 2... Line -...
2
 
-
 
3
import org.tela_botanica.client.modeles.MenuApplicationId;
-
 
4
 
2
 
5
import com.extjs.gxt.ui.client.GXT;
3
import com.extjs.gxt.ui.client.GXT;
Line 6... Line 4...
6
import com.google.gwt.core.client.EntryPoint;
4
import com.google.gwt.core.client.EntryPoint;
Line 7... Line -...
7
 
-
 
8
public class Coel implements EntryPoint {
-
 
9
 
5
 
-
 
6
public class Coel implements EntryPoint {
10
	private Mediateur mediateur = null;
7
 
Line -... Line 8...
-
 
8
	public void onModuleLoad() {
-
 
9
		// Fermeture du panneau de chargement de l'appli
-
 
10
		GXT.hideLoadingPanel("loading");
-
 
11
		
11
	
12
		// Création du médiateur
12
	public void onModuleLoad() {
13
		new Mediateur();
13
		GXT.hideLoadingPanel("loading");
14
		
14
		
15
		// Si activation du mode débug
15
		if (Mediateur.DEBUG) {
16
		if (Mediateur.DEBUG) {
Line 16... Line -...
16
			System.out.println("");
-
 
Line 17... Line -...
17
			System.out.println("-------------------------------------------------------------------");
-
 
18
			System.out.println("");
-
 
19
		}
-
 
20
		
-
 
21
		mediateur = getMediateur();
-
 
22
		
-
 
23
		// J'appelle directement la page où je travaille
17
			System.out.println("");
24
		mediateur.clicMenu(MenuApplicationId.ACCUEIL);
18
			System.out.println("-------------------------------------------------------------------");
25
	}
19
			System.out.println("");