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;
|
72 |
aurelien |
5 |
import org.tela_botanica.del.client.vues.plateformedetermination.formulairerechercheeflore.FormulaireRechercheEflorePresenteur;
|
46 |
aurelien |
6 |
import org.tela_botanica.del.client.vues.plateformedetermination.forum.ForumPresenteur;
|
103 |
benjamin |
7 |
import org.tela_botanica.del.client.vues.plateformedetermination.vote.EnsembleVotesPresenteur;
|
140 |
aurelien |
8 |
import org.tela_botanica.del.client.vues.plateformedetermination.vote.barrerepartition.BarreRepartitionVotePresenteur;
|
41 |
aurelien |
9 |
|
|
|
10 |
import com.google.gwt.user.client.ui.HasWidgets;
|
|
|
11 |
|
46 |
aurelien |
12 |
public class DeterminationPresenteur {
|
135 |
gduche |
13 |
|
46 |
aurelien |
14 |
DeterminationVue determinationVue = new DeterminationVue();
|
135 |
gduche |
15 |
|
46 |
aurelien |
16 |
public DeterminationPresenteur() {
|
41 |
aurelien |
17 |
|
|
|
18 |
}
|
135 |
gduche |
19 |
|
41 |
aurelien |
20 |
public void go(HasWidgets composite) {
|
135 |
gduche |
21 |
|
46 |
aurelien |
22 |
new DetailImageObservationPresenteur().go(determinationVue.getDetailImageObservation());
|
103 |
benjamin |
23 |
new EnsembleVotesPresenteur().go(determinationVue.getVote());
|
46 |
aurelien |
24 |
new ForumPresenteur().go(determinationVue.getForum());
|
|
|
25 |
new FormulairePropositionPresenteur().go(determinationVue.getFormulaireProposition());
|
135 |
gduche |
26 |
new FormulaireRechercheEflorePresenteur().go(determinationVue.getFormulaireRechercheEflore());
|
140 |
aurelien |
27 |
new BarreRepartitionVotePresenteur().go(determinationVue.getBarreRepartition());
|
135 |
gduche |
28 |
|
46 |
aurelien |
29 |
composite.add(determinationVue);
|
41 |
aurelien |
30 |
}
|
|
|
31 |
}
|