Subversion Repositories eFlore/Applications.del

Rev

Rev 860 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
184 benjamin 1
package org.tela_botanica.del.client.vues.vueinitiale;
2
 
602 aurelien 3
import org.tela_botanica.del.client.composants.formulaires.identification.FormulaireIdentificationPresenteur;
4
import org.tela_botanica.del.client.composants.formulaires.identification.FormulaireIdentificationVue;
184 benjamin 5
import org.tela_botanica.del.client.gestionhistorique.ConstantesNavigation;
860 gduche 6
import org.tela_botanica.del.client.i18n.I18n;
555 gduche 7
import org.tela_botanica.del.client.services.rest.UtilisateurService;
556 gduche 8
import org.tela_botanica.del.client.services.rest.UtilisateurServiceConcret;
555 gduche 9
import org.tela_botanica.del.client.services.rest.async.UtilisateurCallback;
184 benjamin 10
 
11
import com.google.gwt.core.client.GWT;
12
import com.google.gwt.uibinder.client.UiBinder;
13
import com.google.gwt.uibinder.client.UiField;
14
import com.google.gwt.user.client.ui.Composite;
15
import com.google.gwt.user.client.ui.Hyperlink;
539 gduche 16
import com.google.gwt.user.client.ui.Panel;
184 benjamin 17
import com.google.gwt.user.client.ui.Widget;
18
 
19
public class VueInitiale extends Composite {
20
 
21
	// Gestion d'UiBinder
22
	interface Binder extends UiBinder<Widget, VueInitiale> {
23
	}
24
 
25
	private static Binder binder = GWT.create(Binder.class);
26
 
539 gduche 27
	@UiField Panel zoneIdentification;
28
 
184 benjamin 29
	// Constructeur de la vue
30
	public VueInitiale() {
31
		initWidget(binder.createAndBindUi(this));
32
 
556 gduche 33
		FormulaireIdentificationPresenteur presenteurIdentification = new FormulaireIdentificationPresenteur(new FormulaireIdentificationVue(), new UtilisateurServiceConcret());
539 gduche 34
		presenteurIdentification.go(zoneIdentification);
184 benjamin 35
	}
36
 
37
}