Subversion Repositories eFlore/Applications.del

Rev

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

Rev 335 Rev 386
Line 9... Line 9...
9
import com.google.gwt.uibinder.client.UiBinder;
9
import com.google.gwt.uibinder.client.UiBinder;
10
import com.google.gwt.uibinder.client.UiField;
10
import com.google.gwt.uibinder.client.UiField;
11
import com.google.gwt.user.client.ui.Button;
11
import com.google.gwt.user.client.ui.Button;
12
import com.google.gwt.user.client.ui.Composite;
12
import com.google.gwt.user.client.ui.Composite;
13
import com.google.gwt.user.client.ui.HasText;
13
import com.google.gwt.user.client.ui.HasText;
-
 
14
import com.google.gwt.user.client.ui.HasWidgets;
14
import com.google.gwt.user.client.ui.Label;
15
import com.google.gwt.user.client.ui.Label;
15
import com.google.gwt.user.client.ui.Panel;
16
import com.google.gwt.user.client.ui.Panel;
16
import com.google.gwt.user.client.ui.TextBox;
17
import com.google.gwt.user.client.ui.TextBox;
17
import com.google.gwt.user.client.ui.Widget;
18
import com.google.gwt.user.client.ui.Widget;
Line 23... Line 24...
23
 
24
 
24
	private static Binder uiBinder = GWT.create(Binder.class);
25
	private static Binder uiBinder = GWT.create(Binder.class);
Line 25... Line 26...
25
	private String labelRecherche = "";
26
	private String labelRecherche = "";
26
 
27
 
27
	@UiField
28
	@UiField
28
	Panel rechercheAvancee;
29
	Panel rechercheAvancee,taxon;
29
	@UiField
30
	@UiField
30
	Label lienRechercheAvancee, recherchePrecedente;
31
	Label lienRechercheAvancee, recherchePrecedente;
31
	@UiField
32
	@UiField
32
	Button boutonRecherche, boutonRechercheAvancee;
33
	Button boutonRecherche, boutonRechercheAvancee;
Line 33... Line 34...
33
	@UiField
34
	@UiField
34
	TextBox recherchePrincipale, departement, commune, taxon, famille, genre, tag, motCle, auteur, date;
35
	TextBox recherchePrincipale, departement, commune, famille, genre, tag, motCle, auteur, date;
35
 
36
 
36
	public MoteurRechercheVue(String labelRecherche) {
37
	public MoteurRechercheVue(String labelRecherche) {
Line 146... Line 147...
146
 
147
 
147
	public HasText getCommune() {
148
	public HasText getCommune() {
148
		return commune;
149
		return commune;
Line 149... Line 150...
149
	}
150
	}
150
 
151
 
151
	public HasText getTaxon() {
152
	public HasWidgets getTaxon() {
Line 152... Line 153...
152
		return taxon;
153
		return taxon;
153
	}
154
	}