Subversion Repositories eFlore/Applications.coel

Rev

Rev 10 | Rev 51 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
10 jpm 1
package org.tela_botanica.client;
2
 
3
import com.google.gwt.core.client.EntryPoint;
4
import com.google.gwt.user.client.ui.RootPanel;
5
 
6
/**
7
 * Entry point classes define <code>onModuleLoad()</code>.
8
 */
9
public class Coel implements EntryPoint {
10
 
11
  /**
12
   * This is the entry point method.
13
   */
14
  public void onModuleLoad() {
45 jpm 15
	  // Création du médiateur
16
	  CoelMediateur coelMediateur = CoelMediateur.Instance();
17
	  // Appel static au panneau principal
18
	  RootPanel.get().add(coelMediateur.getPanneauPrincipal());
10 jpm 19
  }
20
}