Subversion Repositories eFlore/Applications.del

Rev

Rev 210 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 210 Rev 309
Line 1... Line 1...
1
package org.tela_botanica.del.client.vues.rechercheobservations;
1
package org.tela_botanica.del.client.vues.rechercheobservations;
Line 2... Line 2...
2
 
2
 
-
 
3
import com.google.gwt.core.client.GWT;
-
 
4
import com.google.gwt.event.dom.client.HasClickHandlers;
3
import com.google.gwt.core.client.GWT;
5
import com.google.gwt.event.dom.client.HasKeyPressHandlers;
4
import com.google.gwt.uibinder.client.UiBinder;
6
import com.google.gwt.uibinder.client.UiBinder;
5
import com.google.gwt.uibinder.client.UiField;
7
import com.google.gwt.uibinder.client.UiField;
6
import com.google.gwt.user.client.ui.Button;
8
import com.google.gwt.user.client.ui.Button;
-
 
9
import com.google.gwt.user.client.ui.Composite;
-
 
10
import com.google.gwt.user.client.ui.HasText;
-
 
11
import com.google.gwt.user.client.ui.HasVisibility;
7
import com.google.gwt.user.client.ui.Composite;
12
import com.google.gwt.user.client.ui.HasWidgets;
8
import com.google.gwt.user.client.ui.Label;
13
import com.google.gwt.user.client.ui.Label;
9
import com.google.gwt.user.client.ui.Panel;
14
import com.google.gwt.user.client.ui.Panel;
10
import com.google.gwt.user.client.ui.TextBox;
15
import com.google.gwt.user.client.ui.TextBox;
Line 11... Line 16...
11
import com.google.gwt.user.client.ui.Widget;
16
import com.google.gwt.user.client.ui.Widget;
Line 12... Line 17...
12
 
17
 
13
public class RechercheObservationsVue extends Composite {
18
public class RechercheObservationsVue extends Composite implements RechercheObservationsPresenteur.Vue {
14
 
19
 
Line 23... Line 28...
23
	protected TextBox recherchePrincipale, departement, commune, taxon, famille, genre, tag, motCle, auteur, date;
28
	protected TextBox recherchePrincipale, departement, commune, taxon, famille, genre, tag, motCle, auteur, date;
Line 24... Line 29...
24
 
29
 
25
	@UiField
30
	@UiField
Line -... Line 31...
-
 
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;
-
 
71
	}
-
 
72
 
-
 
73
	public Button getBoutonRecherche() {
-
 
74
		return boutonRecherche;
-
 
75
	}
-
 
76
 
-
 
77
	public Button getBoutonRechercheAvancee() {
-
 
78
		return boutonRechercheAvancee;
-
 
79
	}
-
 
80
 
-
 
81
	public Label getLienRechercheAvancee() {
-
 
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;
26
	protected Button boutonRecherche, boutonRechercheAvancee;
99
	}
27
 
100
 
Line 28... Line 101...
28
	@UiField
101
	@UiField
29
	protected Label lienRechercheAvancee, recherchePrecedente;
102
	protected Label lienRechercheAvancee, recherchePrecedente;
Line 35... Line 108...
35
	public RechercheObservationsVue() {
108
	public RechercheObservationsVue() {
36
		initWidget(binder.createAndBindUi(this));
109
		initWidget(binder.createAndBindUi(this));
37
		rechercheAvancee.setVisible(false);
110
		rechercheAvancee.setVisible(false);
38
	}
111
	}
Line -... Line 112...
-
 
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
-
 
124
	public HasText getRecherchePrincipaleHasText() {
-
 
125
		return recherchePrincipale;
-
 
126
	}
-
 
127
 
-
 
128
	@Override
-
 
129
	public HasWidgets getRechercheAvanceeHasWidget() {
-
 
130
		return rechercheAvancee;
-
 
131
	}
-
 
132
 
-
 
133
	@Override
-
 
134
	public HasVisibility getRechercheAvanceeHasVisibility() {
-
 
135
		return rechercheAvancee;
-
 
136
	}
39
 
137