Subversion Repositories eFlore/Applications.del

Rev

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

Rev 860 Rev 1091
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
	private static Binder binder = GWT.create(Binder.class);
-
 
26
 
-
 
27
	@UiField
-
 
28
	protected Hyperlink lienRechercheImages, lienRechercheObservations;
25
	private static Binder binder = GWT.create(Binder.class);
Line 29... Line 26...
29
 
26
 
30
	@UiField Panel zoneIdentification; 
27
	@UiField Panel zoneIdentification; 
31
	
28
	
Line 32... Line -...
32
	// Constructeur de la vue
-
 
33
	public VueInitiale() {
-
 
34
		initWidget(binder.createAndBindUi(this));
-
 
35
 
-
 
36
		lienRechercheImages.setText(I18n.getVocabulary().rechercherImage());
-
 
37
		lienRechercheImages.setTargetHistoryToken(ConstantesNavigation.PAGE_RECHERCHE_IMAGES);
-
 
38
 
29
	// Constructeur de la vue
39
		lienRechercheObservations.setText(I18n.getVocabulary().rechercherObservation());
30
	public VueInitiale() {
40
		lienRechercheObservations.setTargetHistoryToken(ConstantesNavigation.PAGE_RECHERCHE_OBSERVATIONS);
31
		initWidget(binder.createAndBindUi(this));
Line 41... Line -...
41
		
-
 
42
		FormulaireIdentificationPresenteur presenteurIdentification = new FormulaireIdentificationPresenteur(new FormulaireIdentificationVue(), new UtilisateurServiceConcret());
-
 
43
		presenteurIdentification.go(zoneIdentification);
-
 
44
	}
-
 
45
 
-
 
46
	public Hyperlink getLienRechercheImages() {
-
 
47
		return lienRechercheImages;
-
 
48
	}
-
 
49
 
32