Rev 313 | Rev 1033 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package org.tela_botanica.del.client;
import org.tela_botanica.del.client.gestionhistorique.ConstantesNavigation;
import org.tela_botanica.del.client.gestionhistorique.GestionnaireHistorique;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.History;
public class Del implements EntryPoint {
@Override
public void onModuleLoad() {
History.addValueChangeHandler(new GestionnaireHistorique());
History.newItem(ConstantesNavigation.PAGE_RECHERCHE_IMAGES, true);
History.fireCurrentHistoryState();
}
}