Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 478 → Rev 479

/trunk/src/org/tela_botanica/del/client/vues/rechercheobservations/moteur/MoteurRechercheObservationsVue.java
New file
0,0 → 1,39
package org.tela_botanica.del.client.vues.rechercheobservations.moteur;
 
import com.google.gwt.core.client.GWT;
import com.google.gwt.uibinder.client.UiBinder;
import com.google.gwt.uibinder.client.UiField;
import com.google.gwt.user.client.ui.Composite;
import com.google.gwt.user.client.ui.HasWidgets;
import com.google.gwt.user.client.ui.Panel;
import com.google.gwt.user.client.ui.Widget;
 
public class MoteurRechercheObservationsVue extends Composite implements MoteurRechercheObservationsPresenteur.Vue {
 
// Gestion d'UiBinder
interface Binder extends UiBinder<Widget, MoteurRechercheObservationsVue> {
}
 
private static Binder binder = GWT.create(Binder.class);
 
@UiField
Panel zoneRecherche, zoneResultats;
 
 
public HasWidgets getZoneRecherche() {
return zoneRecherche;
}
 
// Constructeur de la vue
public MoteurRechercheObservationsVue() {
initWidget(binder.createAndBindUi(this));
}
 
public Panel getZoneResultats() {
return zoneResultats;
}
 
 
}