Subversion Repositories eFlore/Applications.del

Rev

Rev 315 | Rev 1034 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 315 Rev 529
1
package org.tela_botanica.del.client;
1
package org.tela_botanica.del.client;
2
 
2
 
3
import org.tela_botanica.del.client.gestionhistorique.ConstantesNavigation;
3
import org.tela_botanica.del.client.gestionhistorique.ConstantesNavigation;
4
import org.tela_botanica.del.client.gestionhistorique.GestionnaireHistorique;
4
import org.tela_botanica.del.client.gestionhistorique.GestionnaireHistorique;
-
 
5
 
-
 
6
import org.tela_botanica.del.client.config.Config;
5
 
7
 
6
import com.google.gwt.core.client.EntryPoint;
8
import com.google.gwt.core.client.EntryPoint;
7
import com.google.gwt.user.client.History;
9
import com.google.gwt.user.client.History;
8
 
10
 
9
public class Del implements EntryPoint {
11
public class Del implements EntryPoint {
10
 
12
	
11
	@Override
13
	@Override
12
	public void onModuleLoad() {
14
	public void onModuleLoad() {
13
		History.addValueChangeHandler(new GestionnaireHistorique());
15
		History.addValueChangeHandler(new GestionnaireHistorique());
14
		
-
 
15
		
-
 
16
 
-
 
17
		History.newItem(ConstantesNavigation.PAGE_RECHERCHE_IMAGES, true);
16
		History.newItem(ConstantesNavigation.PAGE_RECHERCHE_IMAGES, true);
18
		History.fireCurrentHistoryState();
17
		History.fireCurrentHistoryState();
19
	}
18
	}
20
}
19
}