1024 |
aurelien |
1 |
package org.tela_botanica.cel.client.vues.observation;
|
|
|
2 |
|
1025 |
aurelien |
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;
|
|
|
7 |
import com.google.gwt.user.client.ui.HTMLPanel;
|
|
|
8 |
import com.google.gwt.user.client.ui.HasWidgets;
|
|
|
9 |
import com.google.gwt.user.client.ui.Widget;
|
1024 |
aurelien |
10 |
|
1025 |
aurelien |
11 |
public class PanneauPrincipalObservationVue extends Composite implements PanneauPrincipalObservationPresenteur.Vue {
|
|
|
12 |
|
|
|
13 |
@UiField
|
|
|
14 |
HTMLPanel panneauFormulaireSaisieObservation, panneauListeObservation;
|
|
|
15 |
|
|
|
16 |
interface MyUiBinder extends UiBinder<Widget, PanneauPrincipalObservationVue> {
|
|
|
17 |
}
|
|
|
18 |
private static MyUiBinder uiBinder = GWT.create(MyUiBinder.class);
|
|
|
19 |
|
|
|
20 |
public PanneauPrincipalObservationVue() {
|
|
|
21 |
initWidget(uiBinder.createAndBindUi(this));
|
|
|
22 |
}
|
|
|
23 |
|
|
|
24 |
@Override
|
|
|
25 |
public void ajouterAuParent(HasWidgets parent) {
|
|
|
26 |
parent.add(this);
|
|
|
27 |
}
|
|
|
28 |
|
|
|
29 |
@Override
|
|
|
30 |
public HasWidgets getPanneauFormulaireSaisieObservation() {
|
|
|
31 |
return panneauFormulaireSaisieObservation;
|
|
|
32 |
}
|
|
|
33 |
|
|
|
34 |
@Override
|
|
|
35 |
public HasWidgets getPanneauListeObservation() {
|
|
|
36 |
return panneauListeObservation;
|
|
|
37 |
}
|
1024 |
aurelien |
38 |
}
|