Subversion Repositories eFlore/Applications.coel

Compare Revisions

Ignore whitespace Rev 404 → Rev 405

/trunk/src/org/tela_botanica/client/Coel.java
12,16 → 12,17
 
public class Coel implements EntryPoint {
 
public AppliConstantes i18nC;
 
private AppliConstantes i18nC = null;
private Mediateur mediateur = null;
public void onModuleLoad() {
GXT.hideLoadingPanel("loading");
i18nC = GWT.create(AppliConstantes.class);
i18nC = getI18nConstante();
initialiserRegistre();
Mediateur mediateur = new Mediateur();
mediateur = getMediateur();
// J'appelle directement la page où je travaille
mediateur.clicMenu(MenuApplicationId.STRUCTURE);
35,5 → 36,13
Registry.register(RegistreId.CONFIG, new Configuration());
Registry.register(RegistreId.POPUP_CHARGEMENT, new PopupChargement());
}
protected Mediateur getMediateur() {
return new Mediateur();
}
protected AppliConstantes getI18nConstante() {
return GWT.create(AppliConstantes.class);
}
 
}