Subversion Repositories eFlore/Applications.del

Rev

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

Rev 445 Rev 455
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;
3
import com.google.gwt.core.client.GWT;
4
import com.google.gwt.uibinder.client.UiBinder;
4
import com.google.gwt.uibinder.client.UiBinder;
-
 
5
import com.google.gwt.uibinder.client.UiField;
5
import com.google.gwt.uibinder.client.UiField;
6
import com.google.gwt.user.client.ui.Button;
6
import com.google.gwt.user.client.ui.Composite;
7
import com.google.gwt.user.client.ui.Composite;
7
import com.google.gwt.user.client.ui.HasWidgets;
8
import com.google.gwt.user.client.ui.HasWidgets;
8
import com.google.gwt.user.client.ui.Panel;
9
import com.google.gwt.user.client.ui.Panel;
Line 17... Line 18...
17
	private static Binder binder = GWT.create(Binder.class);
18
	private static Binder binder = GWT.create(Binder.class);
Line 18... Line 19...
18
 
19
 
19
	@UiField
20
	@UiField
Line -... Line 21...
-
 
21
	Panel zoneRecherche, zoneResultats;
-
 
22
 
-
 
23
	@UiField
20
	Panel zoneRecherche, zoneResultats;
24
	Button triParNbVotesAscendant, triParNbVotesDescendant, triParDateAscendant, triParDateDescendant;
21
 
25
 
22
	public HasWidgets getZoneRecherche() {
26
	public HasWidgets getZoneRecherche() {
Line 23... Line 27...
23
		return zoneRecherche;
27
		return zoneRecherche;
Line 30... Line 34...
30
 
34
 
31
	public Panel getZoneResultats() {
35
	public Panel getZoneResultats() {
32
		return zoneResultats;
36
		return zoneResultats;
Line -... Line 37...
-
 
37
	}
-
 
38
 
-
 
39
	public Button getTriParNbVotesAscendant() {
-
 
40
		return triParNbVotesAscendant;
-
 
41
	}
-
 
42
 
-
 
43
	public Button getTriParNbVotesDescendant() {
-
 
44
		return triParNbVotesDescendant;
-
 
45
	}
-
 
46
 
-
 
47
	public Button getTriParDateAscendant() {
-
 
48
		return triParDateAscendant;
-
 
49
	}
-
 
50
 
-
 
51
	public Button getTriParDateDescendant() {
-
 
52
		return triParDateDescendant;
33
	}
53
	}