Subversion Repositories eFlore/Applications.del

Rev

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

Rev 564 Rev 581
Line 29... Line 29...
29
	@UiField
29
	@UiField
30
	Label lienRechercheAvancee, recherchePrecedente;
30
	Label lienRechercheAvancee, recherchePrecedente;
31
	@UiField
31
	@UiField
32
	Button boutonRecherche, boutonRechercheAvancee, boutonFermer, boutonVider;
32
	Button boutonRecherche, boutonRechercheAvancee, boutonFermer, boutonVider;
33
	@UiField
33
	@UiField
34
	TextBox recherchePrincipale, contientMots, departement, famille, genre, tag, motCle, auteur, date;
34
	TextBox recherchePrincipale, contientMots, departement, famille, genre, motCle, auteur, date;
Line 35... Line 35...
35
 
35
 
36
	public MoteurRechercheVue(String labelRecherche) {
36
	public MoteurRechercheVue(String labelRecherche) {
37
		initWidget(uiBinder.createAndBindUi(this));
37
		initWidget(uiBinder.createAndBindUi(this));
38
		this.labelRecherche = labelRecherche;
38
		this.labelRecherche = labelRecherche;
Line 110... Line 110...
110
 
110
 
111
	public String getGenre() {
111
	public String getGenre() {
112
		return genre.getText();
112
		return genre.getText();
Line 113... Line -...
113
	}
-
 
114
 
-
 
115
	public String getTag() {
-
 
116
		return tag.getText();
-
 
117
	}
113
	}
118
 
114
 
119
	public String getMotCle() {
115
	public String getMotCle() {
Line 120... Line 116...
120
		return motCle.getText();
116
		return motCle.getText();
Line 150... Line 146...
150
		recherchePrincipale.setText(informationsRecherche.getRechercheLibre());
146
		recherchePrincipale.setText(informationsRecherche.getRechercheLibre());
151
		contientMots.setText(informationsRecherche.getRechercheLibre());
147
		contientMots.setText(informationsRecherche.getRechercheLibre());
152
		departement.setText(informationsRecherche.getDepartement());
148
		departement.setText(informationsRecherche.getDepartement());
153
		famille.setText(informationsRecherche.getFamille());
149
		famille.setText(informationsRecherche.getFamille());
154
		genre.setText(informationsRecherche.getGenre());
150
		genre.setText(informationsRecherche.getGenre());
155
		tag.setText(informationsRecherche.getTag());
-
 
156
		motCle.setText(informationsRecherche.getMotClef());
151
		motCle.setText(informationsRecherche.getMotClef());
157
		auteur.setText(informationsRecherche.getAuteur());
152
		auteur.setText(informationsRecherche.getAuteur());
158
		date.setText(informationsRecherche.getDate());
153
		date.setText(informationsRecherche.getDate());
Line 159... Line 154...
159
 
154
 
Line 213... Line 208...
213
	public HasKeyPressHandlers getChampsGenre() {
208
	public HasKeyPressHandlers getChampsGenre() {
214
		return genre;
209
		return genre;
215
	}
210
	}
Line 216... Line 211...
216
 
211
 
217
	@Override
-
 
218
	public HasKeyPressHandlers getChampsTag() {
-
 
219
		return tag;
-
 
220
	}
-
 
221
 
-
 
222
	@Override
212
	@Override
223
	public HasKeyPressHandlers getChampsMotCle() {
213
	public HasKeyPressHandlers getChampsMotCle() {
224
		return motCle;
214
		return motCle;
Line 225... Line 215...
225
	}
215
	}