Subversion Repositories eFlore/Applications.del

Rev

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

Rev 313 Rev 315
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
 
5
 
6
import com.google.gwt.core.client.EntryPoint;
6
import com.google.gwt.core.client.EntryPoint;
7
import com.google.gwt.user.client.History;
7
import com.google.gwt.user.client.History;
8
 
8
 
9
public class Del implements EntryPoint {
9
public class Del implements EntryPoint {
10
 
10
 
11
	@Override
11
	@Override
12
	public void onModuleLoad() {
12
	public void onModuleLoad() {
13
		History.addValueChangeHandler(new GestionnaireHistorique());
13
		History.addValueChangeHandler(new GestionnaireHistorique());
14
		
14
		
15
		
-
 
16
		//FIXME : mauvaise gestion du menu navigation
-
 
17
		History.newItem(ConstantesNavigation.PAGE_PRINCIPALE, true);
-
 
18
		History.fireCurrentHistoryState();
15
		
19
 
16
 
20
		History.newItem(ConstantesNavigation.PAGE_RECHERCHE_IMAGES, true);
17
		History.newItem(ConstantesNavigation.PAGE_RECHERCHE_IMAGES, true);
21
		History.fireCurrentHistoryState();
18
		History.fireCurrentHistoryState();
22
	}
19
	}
23
}
20
}