41 |
aurelien |
1 |
package org.tela_botanica.del.client.vues.plateformedetermination;
|
|
|
2 |
|
46 |
aurelien |
3 |
import org.tela_botanica.del.client.vues.plateformedetermination.detail.DetailImageObservationPresenteur;
|
|
|
4 |
import org.tela_botanica.del.client.vues.plateformedetermination.formulaireproposition.FormulairePropositionPresenteur;
|
|
|
5 |
import org.tela_botanica.del.client.vues.plateformedetermination.formulaireproposition.FormulairePropositionVue;
|
|
|
6 |
import org.tela_botanica.del.client.vues.plateformedetermination.forum.ForumPresenteur;
|
41 |
aurelien |
7 |
|
|
|
8 |
import com.google.gwt.user.client.ui.HasWidgets;
|
|
|
9 |
|
46 |
aurelien |
10 |
public class DeterminationPresenteur {
|
41 |
aurelien |
11 |
|
46 |
aurelien |
12 |
DeterminationVue determinationVue = new DeterminationVue();
|
41 |
aurelien |
13 |
|
46 |
aurelien |
14 |
public DeterminationPresenteur() {
|
41 |
aurelien |
15 |
|
|
|
16 |
}
|
|
|
17 |
|
|
|
18 |
public void go(HasWidgets composite) {
|
|
|
19 |
|
46 |
aurelien |
20 |
new DetailImageObservationPresenteur().go(determinationVue.getDetailImageObservation());
|
|
|
21 |
new ForumPresenteur().go(determinationVue.getForum());
|
|
|
22 |
new FormulairePropositionPresenteur().go(determinationVue.getFormulaireProposition());
|
|
|
23 |
|
|
|
24 |
composite.add(determinationVue);
|
41 |
aurelien |
25 |
}
|
|
|
26 |
}
|