72 |
aurelien |
1 |
package org.tela_botanica.del.client.vues.plateformedetermination.formulairerechercheeflore;
|
70 |
aurelien |
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.TextBox;
|
|
|
9 |
import com.google.gwt.user.client.ui.Widget;
|
|
|
10 |
|
|
|
11 |
public class FormulaireRechercheEfloreVue extends Composite {
|
|
|
12 |
|
|
|
13 |
@UiField(provided = true)
|
|
|
14 |
public TextBox formulaireRechercheObservationEflore = new TextBox();
|
|
|
15 |
|
|
|
16 |
@UiField(provided = true)
|
|
|
17 |
public Button boutonValidationRechercheObservation = new Button();
|
|
|
18 |
|
|
|
19 |
interface FormulaireRechercheEfloreUIiBinder extends UiBinder<Widget, FormulaireRechercheEfloreVue>{};
|
|
|
20 |
FormulaireRechercheEfloreUIiBinder uiBinder = GWT.create(FormulaireRechercheEfloreUIiBinder.class);
|
|
|
21 |
|
|
|
22 |
public FormulaireRechercheEfloreVue() {
|
|
|
23 |
initWidget(uiBinder.createAndBindUi(this));
|
|
|
24 |
}
|
73 |
benjamin |
25 |
|
|
|
26 |
public TextBox getFormulaireRechercheObservationEflore() {
|
|
|
27 |
return formulaireRechercheObservationEflore;
|
|
|
28 |
}
|
|
|
29 |
|
|
|
30 |
public Button getBoutonValidationRechercheObservation() {
|
|
|
31 |
return boutonValidationRechercheObservation;
|
|
|
32 |
}
|
70 |
aurelien |
33 |
}
|