Subversion Repositories eFlore/Applications.del

Rev

Rev 545 | Rev 581 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 545 Rev 564
Line 16... Line 16...
16
import com.google.gwt.user.client.ui.TextBox;
16
import com.google.gwt.user.client.ui.TextBox;
17
import com.google.gwt.user.client.ui.Widget;
17
import com.google.gwt.user.client.ui.Widget;
Line 18... Line 18...
18
 
18
 
Line 19... Line 19...
19
public class MoteurRechercheVue extends Composite implements MoteurRecherchePresenteur.Vue {
19
public class MoteurRechercheVue extends Composite implements MoteurRecherchePresenteur.Vue {
-
 
20
 
Line 20... Line 21...
20
 
21
	interface Binder extends UiBinder<Widget, MoteurRechercheVue> {
21
	interface Binder extends UiBinder<Widget, MoteurRechercheVue> {}
22
	}
Line 22... Line 23...
22
 
23
 
Line 200... Line 201...
200
			texteRecherchePrecedente.append(I18n.getVocabulary().date() + ":" + informationRecherche.getDate() + " ");
201
			texteRecherchePrecedente.append(I18n.getVocabulary().date() + ":" + informationRecherche.getDate() + " ");
201
		}
202
		}
Line 202... Line 203...
202
 
203
 
203
		recherchePrecedente.setText(texteRecherchePrecedente.toString());
204
		recherchePrecedente.setText(texteRecherchePrecedente.toString());
-
 
205
	}
-
 
206
 
-
 
207
	@Override
-
 
208
	public HasKeyPressHandlers getChampsFamille() {
-
 
209
		return famille;
-
 
210
	}
-
 
211
 
-
 
212
	@Override
-
 
213
	public HasKeyPressHandlers getChampsGenre() {
-
 
214
		return genre;
-
 
215
	}
-
 
216
 
-
 
217
	@Override
-
 
218
	public HasKeyPressHandlers getChampsTag() {
-
 
219
		return tag;
-
 
220
	}
-
 
221
 
-
 
222
	@Override
-
 
223
	public HasKeyPressHandlers getChampsMotCle() {
-
 
224
		return motCle;
-
 
225
	}
-
 
226
 
-
 
227
	@Override
-
 
228
	public HasKeyPressHandlers getChampsAuteur() {
-
 
229
		return auteur;
-
 
230
	}
-
 
231
 
-
 
232
	@Override
-
 
233
	public HasKeyPressHandlers getChampsDate() {
-
 
234
		return date;
204
	}
235
	}
205
}
236
}