161 |
gduche |
1 |
package org.tela_botanica.del.client.vues.rechercheobservations;
|
|
|
2 |
|
|
|
3 |
import com.google.gwt.core.client.GWT;
|
|
|
4 |
import com.google.gwt.uibinder.client.UiBinder;
|
|
|
5 |
import com.google.gwt.uibinder.client.UiField;
|
|
|
6 |
import com.google.gwt.user.client.ui.Button;
|
|
|
7 |
import com.google.gwt.user.client.ui.Composite;
|
|
|
8 |
import com.google.gwt.user.client.ui.Label;
|
|
|
9 |
import com.google.gwt.user.client.ui.Panel;
|
|
|
10 |
import com.google.gwt.user.client.ui.TextBox;
|
|
|
11 |
import com.google.gwt.user.client.ui.Widget;
|
|
|
12 |
|
|
|
13 |
public class RechercheObservationsVue extends Composite {
|
|
|
14 |
|
|
|
15 |
// Gestion d'UiBinder
|
|
|
16 |
interface Binder extends UiBinder<Widget, RechercheObservationsVue> {
|
|
|
17 |
}
|
|
|
18 |
|
|
|
19 |
private static Binder binder = GWT.create(Binder.class);
|
|
|
20 |
|
|
|
21 |
// Définir ici les champs de la vue à afficher en protected
|
|
|
22 |
@UiField
|
|
|
23 |
protected TextBox recherchePrincipale, departement, commune, taxon, famille, genre, tag, motCle, auteur, date;
|
|
|
24 |
|
|
|
25 |
@UiField
|
|
|
26 |
protected Button boutonRecherche, boutonRechercheAvancee;
|
|
|
27 |
|
|
|
28 |
@UiField
|
|
|
29 |
protected Label lienRechercheAvancee, recherchePrecedente;
|
|
|
30 |
|
|
|
31 |
@UiField
|
207 |
gduche |
32 |
protected Panel rechercheAvancee, zoneObservations, zonePagination;
|
161 |
gduche |
33 |
|
|
|
34 |
// Constructeur de la vue
|
|
|
35 |
public RechercheObservationsVue() {
|
|
|
36 |
initWidget(binder.createAndBindUi(this));
|
|
|
37 |
rechercheAvancee.setVisible(false);
|
|
|
38 |
}
|
|
|
39 |
|
|
|
40 |
}
|