1196 |
gduche |
1 |
package org.tela_botanica.del.client.composants.formulairerechercheeflore;
|
|
|
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.HasText;
|
|
|
9 |
import com.google.gwt.user.client.ui.Label;
|
|
|
10 |
import com.google.gwt.user.client.ui.Panel;
|
|
|
11 |
import com.google.gwt.user.client.ui.Widget;
|
|
|
12 |
|
|
|
13 |
public class FormulaireRechercheEfloreVue extends Composite {
|
|
|
14 |
|
|
|
15 |
@UiField(provided = true)
|
|
|
16 |
public Button boutonValidationRechercheObservation = new Button();
|
|
|
17 |
|
|
|
18 |
@UiField
|
|
|
19 |
public Panel propositionTaxon;
|
|
|
20 |
|
|
|
21 |
interface FormulaireRechercheEfloreUIiBinder extends UiBinder<Widget, FormulaireRechercheEfloreVue> {
|
|
|
22 |
};
|
|
|
23 |
|
|
|
24 |
FormulaireRechercheEfloreUIiBinder uiBinder = GWT.create(FormulaireRechercheEfloreUIiBinder.class);
|
|
|
25 |
|
|
|
26 |
public FormulaireRechercheEfloreVue() {
|
|
|
27 |
initWidget(uiBinder.createAndBindUi(this));
|
|
|
28 |
}
|
|
|
29 |
|
|
|
30 |
public Button getBoutonValidationRechercheObservation() {
|
|
|
31 |
return boutonValidationRechercheObservation;
|
|
|
32 |
}
|
|
|
33 |
|
|
|
34 |
public Panel getPropositionTaxon() {
|
|
|
35 |
return propositionTaxon;
|
|
|
36 |
}
|
|
|
37 |
|
|
|
38 |
}
|