Subversion Repositories eFlore/Applications.del

Rev

Rev 1091 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1091 Rev 1129
Line 22... Line 22...
22
	interface Binder extends UiBinder<Widget, VueInitiale> {
22
	interface Binder extends UiBinder<Widget, VueInitiale> {
23
	}
23
	}
Line 24... Line 24...
24
 
24
 
Line 25... Line 25...
25
	private static Binder binder = GWT.create(Binder.class);
25
	private static Binder binder = GWT.create(Binder.class);
Line 26... Line 26...
26
 
26
 
27
	@UiField Panel zoneIdentification; 
27
	@UiField Panel zoneIdentification, zonePartagerUrl; 
28
	
28
	
Line 29... Line 29...
29
	// Constructeur de la vue
29
	// Constructeur de la vue
30
	public VueInitiale() {
30
	public VueInitiale() {
-
 
31
		initWidget(binder.createAndBindUi(this));
-
 
32
 
-
 
33
		FormulaireIdentificationPresenteur presenteurIdentification = new FormulaireIdentificationPresenteur(new FormulaireIdentificationVue(), new UtilisateurServiceConcret());
31
		initWidget(binder.createAndBindUi(this));
34
		presenteurIdentification.go(zoneIdentification);
Line 32... Line 35...
32
 
35