Subversion Repositories eFlore/Applications.del

Rev

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

Rev 309 Rev 330
Line 21... Line 21...
21
	interface Binder extends UiBinder<Widget, RechercheObservationsVue> {
21
	interface Binder extends UiBinder<Widget, RechercheObservationsVue> {
22
	}
22
	}
Line 23... Line 23...
23
 
23
 
Line 24... Line 24...
24
	private static Binder binder = GWT.create(Binder.class);
24
	private static Binder binder = GWT.create(Binder.class);
25
 
-
 
26
	// Définir ici les champs de la vue à afficher en protected
-
 
Line 27... Line -...
27
	@UiField
-
 
28
	protected TextBox recherchePrincipale, departement, commune, taxon, famille, genre, tag, motCle, auteur, date;
-
 
29
 
-
 
30
	@UiField
-
 
31
	protected Button boutonRecherche, boutonRechercheAvancee;
-
 
32
 
-
 
33
	public TextBox getRecherchePrincipale() {
-
 
34
		return recherchePrincipale;
-
 
35
	}
-
 
36
 
-
 
37
	public TextBox getDepartement() {
-
 
38
		return departement;
-
 
39
	}
-
 
40
 
-
 
41
	public TextBox getCommune() {
-
 
42
		return commune;
-
 
43
	}
-
 
44
 
-
 
45
	public TextBox getTaxon() {
-
 
46
		return taxon;
-
 
47
	}
-
 
48
 
-
 
49
	public TextBox getFamille() {
-
 
50
		return famille;
-
 
51
	}
-
 
52
 
-
 
53
	public TextBox getGenre() {
-
 
54
		return genre;
-
 
55
	}
-
 
56
 
-
 
57
	public TextBox getTag() {
-
 
58
		return tag;
-
 
59
	}
-
 
60
 
-
 
61
	public TextBox getMotCle() {
-
 
62
		return motCle;
-
 
63
	}
-
 
64
 
-
 
65
	public TextBox getAuteur() {
-
 
66
		return auteur;
-
 
67
	}
-
 
68
 
-
 
69
	public TextBox getDate() {
-
 
70
		return date;
25
 
71
	}
26
	@UiField Panel zoneRecherche, zoneObservations, zonePagination;
72
 
-
 
73
	public Button getBoutonRecherche() {
-
 
74
		return boutonRecherche;
-
 
75
	}
-
 
76
 
-
 
77
	public Button getBoutonRechercheAvancee() {
-
 
78
		return boutonRechercheAvancee;
-
 
79
	}
-
 
80
 
27
 
81
	public Label getLienRechercheAvancee() {
28
	public HasWidgets getZoneRecherche() {
82
		return lienRechercheAvancee;
-
 
83
	}
-
 
84
 
-
 
85
	public Label getRecherchePrecedente() {
-
 
86
		return recherchePrecedente;
-
 
87
	}
-
 
88
 
-
 
89
	public Panel getRechercheAvancee() {
-
 
90
		return rechercheAvancee;
-
 
91
	}
-
 
92
 
-
 
93
	public Panel getZoneObservations() {
-
 
94
		return zoneObservations;
-
 
95
	}
-
 
96
 
-
 
97
	public Panel getZonePagination() {
-
 
98
		return zonePagination;
-
 
99
	}
-
 
100
 
-
 
101
	@UiField
-
 
102
	protected Label lienRechercheAvancee, recherchePrecedente;
-
 
103
 
-
 
104
	@UiField
29
		return zoneRecherche;
105
	protected Panel rechercheAvancee, zoneObservations, zonePagination;
30
	}
106
 
31
	
107
	// Constructeur de la vue
-
 
108
	public RechercheObservationsVue() {
-
 
109
		initWidget(binder.createAndBindUi(this));
-
 
110
		rechercheAvancee.setVisible(false);
-
 
111
	}
-
 
112
 
-
 
113
	@Override
-
 
114
	public HasClickHandlers getRecherchePrincipaleHasClickHandler() {
-
 
115
		return recherchePrincipale;
-
 
116
	}
-
 
117
 
-
 
118
	@Override
-
 
119
	public HasKeyPressHandlers getRecherchePrincipaleHasKeyPressHandlers() {
-
 
120
		return recherchePrincipale;
-
 
121
	}
-
 
122
 
-
 
123
	@Override
32
	// Constructeur de la vue
Line 124... Line 33...
124
	public HasText getRecherchePrincipaleHasText() {
33
	public RechercheObservationsVue() {
125
		return recherchePrincipale;
34
		initWidget(binder.createAndBindUi(this));
126
	}
35
	}
127
 
36
 
Line 128... Line 37...
128
	@Override
37
	@Override
129
	public HasWidgets getRechercheAvanceeHasWidget() {
38
	public HasWidgets getZoneObservations() {
130
		return rechercheAvancee;
39
		return zoneObservations;
131
	}
40
	}
Line 132... Line 41...
132
 
41