116 |
benjamin |
1 |
package org.tela_botanica.del.client.vues.plateformedetermination.vote.protocole.moyenne;
|
|
|
2 |
|
|
|
3 |
import java.util.List;
|
|
|
4 |
|
|
|
5 |
import org.tela_botanica.del.client.modeles.Protocole;
|
148 |
benjamin |
6 |
import org.tela_botanica.del.client.modeles.VoteProtocole;
|
116 |
benjamin |
7 |
import org.tela_botanica.del.client.vues.plateformedetermination.vote.protocole.personnel.MonVoteProtocolePresenteur;
|
|
|
8 |
|
|
|
9 |
import com.google.gwt.user.client.ui.HasWidgets;
|
|
|
10 |
|
|
|
11 |
public class MoyenneVoteProtocolePresenteur {
|
|
|
12 |
|
|
|
13 |
private MoyenneVoteProtocoleVue view;
|
|
|
14 |
|
|
|
15 |
private Protocole protocole;
|
|
|
16 |
|
148 |
benjamin |
17 |
public MoyenneVoteProtocolePresenteur(Protocole protocole, List<VoteProtocole> validationDatas) {
|
116 |
benjamin |
18 |
view = new MoyenneVoteProtocoleVue(protocole, validationDatas);
|
|
|
19 |
}
|
|
|
20 |
|
|
|
21 |
public void go(HasWidgets container) {
|
|
|
22 |
container.add(view);
|
|
|
23 |
new MonVoteProtocolePresenteur(protocole).go(view.getMonVote());
|
|
|
24 |
}
|
|
|
25 |
}
|