Rev 1024 | Blame | Last modification | View Log | RSS feed
package org.tela_botanica.cel.client;
import org.tela_botanica.cel.client.gestionhistorique.GestionnaireHistorique;
import org.tela_botanica.cel.client.gestionhistorique.ConstantesNavigation;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.History;
public class Cel implements EntryPoint {
@Override
public void onModuleLoad() {
History.addValueChangeHandler(new GestionnaireHistorique());
History.newItem(ConstantesNavigation.PAGE_PRINCIPALE, true);
History.fireCurrentHistoryState();
}
}