46 |
aurelien |
1 |
package org.tela_botanica.del.client.vues.plateformedetermination;
|
|
|
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;
|
|
|
7 |
import com.google.gwt.user.client.ui.VerticalPanel;
|
|
|
8 |
import com.google.gwt.user.client.ui.Widget;
|
|
|
9 |
|
|
|
10 |
public class DeterminationVue extends Composite {
|
|
|
11 |
|
|
|
12 |
@UiField(provided = true)
|
|
|
13 |
VerticalPanel forum = new VerticalPanel();
|
|
|
14 |
|
|
|
15 |
@UiField(provided = true)
|
|
|
16 |
VerticalPanel detailImageObservation = new VerticalPanel();
|
|
|
17 |
|
|
|
18 |
@UiField(provided = true)
|
|
|
19 |
VerticalPanel formulaireProposition = new VerticalPanel();
|
|
|
20 |
|
70 |
aurelien |
21 |
@UiField(provided = true)
|
|
|
22 |
VerticalPanel formulaireRechercheEflore = new VerticalPanel();
|
|
|
23 |
|
102 |
aurelien |
24 |
@UiField(provided = true)
|
|
|
25 |
VerticalPanel vote = new VerticalPanel();
|
|
|
26 |
|
46 |
aurelien |
27 |
interface DeterminationUIiBinder extends UiBinder<Widget, DeterminationVue>{};
|
|
|
28 |
private static DeterminationUIiBinder uiBinder = GWT.create(DeterminationUIiBinder.class);
|
|
|
29 |
|
|
|
30 |
public DeterminationVue() {
|
|
|
31 |
initWidget(uiBinder.createAndBindUi(this));
|
|
|
32 |
}
|
|
|
33 |
|
|
|
34 |
public VerticalPanel getForum() {
|
|
|
35 |
return forum;
|
|
|
36 |
}
|
|
|
37 |
|
|
|
38 |
public VerticalPanel getDetailImageObservation() {
|
|
|
39 |
return detailImageObservation;
|
|
|
40 |
}
|
|
|
41 |
|
|
|
42 |
public VerticalPanel getFormulaireProposition() {
|
|
|
43 |
return formulaireProposition;
|
|
|
44 |
}
|
70 |
aurelien |
45 |
|
|
|
46 |
public VerticalPanel getFormulaireRechercheEflore() {
|
|
|
47 |
return formulaireRechercheEflore;
|
|
|
48 |
}
|
102 |
aurelien |
49 |
|
|
|
50 |
public VerticalPanel getVote() {
|
|
|
51 |
return vote;
|
|
|
52 |
}
|
46 |
aurelien |
53 |
}
|