Subversion Repositories eFlore/Applications.del

Rev

Rev 330 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
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.Composite;
309 aurelien 7
import com.google.gwt.user.client.ui.HasWidgets;
161 gduche 8
import com.google.gwt.user.client.ui.Panel;
9
import com.google.gwt.user.client.ui.Widget;
10
 
309 aurelien 11
public class RechercheObservationsVue extends Composite implements RechercheObservationsPresenteur.Vue {
161 gduche 12
 
13
	// Gestion d'UiBinder
14
	interface Binder extends UiBinder<Widget, RechercheObservationsVue> {
15
	}
16
 
17
	private static Binder binder = GWT.create(Binder.class);
18
 
330 gduche 19
	@UiField Panel zoneRecherche, zoneObservations, zonePagination;
161 gduche 20
 
330 gduche 21
	public HasWidgets getZoneRecherche() {
22
		return zoneRecherche;
309 aurelien 23
	}
330 gduche 24
 
161 gduche 25
	// Constructeur de la vue
26
	public RechercheObservationsVue() {
27
		initWidget(binder.createAndBindUi(this));
28
	}
29
 
309 aurelien 30
	@Override
330 gduche 31
	public HasWidgets getZoneObservations() {
32
		return zoneObservations;
309 aurelien 33
	}
34
 
35
	@Override
330 gduche 36
	public HasWidgets getZonePagination() {
37
		return zonePagination;
309 aurelien 38
	}
39
 
161 gduche 40
}