638 |
aurelien |
1 |
package org.tela_botanica.del.client.composants.votes.moyennevotes;
|
9 |
benjamin |
2 |
|
1583 |
mathias |
3 |
import java.util.ArrayList;
|
|
|
4 |
import java.util.Collections;
|
|
|
5 |
import java.util.Comparator;
|
1566 |
mathias |
6 |
import java.util.HashMap;
|
629 |
aurelien |
7 |
import java.util.Iterator;
|
1583 |
mathias |
8 |
import java.util.List;
|
9 |
benjamin |
9 |
|
629 |
aurelien |
10 |
import org.tela_botanica.del.client.cache.CacheClient;
|
1085 |
gduche |
11 |
import org.tela_botanica.del.client.composants.votefleur.VoteFleurPresenteur;
|
|
|
12 |
import org.tela_botanica.del.client.composants.votefleur.VoteFleurVue;
|
629 |
aurelien |
13 |
import org.tela_botanica.del.client.modeles.Image;
|
423 |
gduche |
14 |
import org.tela_botanica.del.client.modeles.Protocole;
|
148 |
benjamin |
15 |
import org.tela_botanica.del.client.modeles.VoteProtocole;
|
1471 |
aurelien |
16 |
import org.tela_botanica.del.client.navigation.evenement.BusEvenementiel;
|
|
|
17 |
import org.tela_botanica.del.client.navigation.evenement.changementEtatUtilisateur.EvenementChangementEtatUtilisateur;
|
|
|
18 |
import org.tela_botanica.del.client.navigation.evenement.changementEtatUtilisateur.GestionnaireEvenementChangementEtatUtilisateur;
|
|
|
19 |
import org.tela_botanica.del.client.navigation.evenement.suppressioncommentaire.EvenementSuppressionCommentaire;
|
|
|
20 |
import org.tela_botanica.del.client.navigation.evenement.suppressioncommentaire.GestionnaireEvenementSuppressionCommentaire;
|
423 |
gduche |
21 |
import org.tela_botanica.del.client.services.rest.VoteProtocoleService;
|
1471 |
aurelien |
22 |
import org.tela_botanica.del.client.services.rest.async.AjoutVoteProtocoleCallback;
|
823 |
aurelien |
23 |
import org.tela_botanica.del.client.services.rest.async.VoteProtocoleCallback;
|
939 |
benjamin |
24 |
|
423 |
gduche |
25 |
import com.google.gwt.event.dom.client.ClickEvent;
|
|
|
26 |
import com.google.gwt.event.dom.client.ClickHandler;
|
629 |
aurelien |
27 |
import com.google.gwt.event.dom.client.HasClickHandlers;
|
1095 |
gduche |
28 |
import com.google.gwt.event.dom.client.HasMouseMoveHandlers;
|
|
|
29 |
import com.google.gwt.event.dom.client.MouseMoveEvent;
|
|
|
30 |
import com.google.gwt.event.dom.client.MouseMoveHandler;
|
1471 |
aurelien |
31 |
import com.google.gwt.user.client.Window;
|
629 |
aurelien |
32 |
import com.google.gwt.user.client.ui.HasText;
|
9 |
benjamin |
33 |
import com.google.gwt.user.client.ui.HasWidgets;
|
629 |
aurelien |
34 |
import com.google.gwt.user.client.ui.IsWidget;
|
1583 |
mathias |
35 |
import com.google.gwt.user.client.ui.Panel;
|
9 |
benjamin |
36 |
|
14 |
benjamin |
37 |
public class MoyenneVotePresenteur {
|
9 |
benjamin |
38 |
|
629 |
aurelien |
39 |
public interface Vue extends IsWidget {
|
|
|
40 |
public HasClickHandlers getBoutonAnnuler();
|
939 |
benjamin |
41 |
|
629 |
aurelien |
42 |
public HasClickHandlers getVotes();
|
939 |
benjamin |
43 |
|
629 |
aurelien |
44 |
public int getValeurVote();
|
939 |
benjamin |
45 |
|
629 |
aurelien |
46 |
public void afficherBoutonAnnuler();
|
939 |
benjamin |
47 |
|
629 |
aurelien |
48 |
public void masquerBoutonAnnuler();
|
939 |
benjamin |
49 |
|
629 |
aurelien |
50 |
public void afficherNbVotes();
|
939 |
benjamin |
51 |
|
|
|
52 |
public void masquerNbVotes();
|
|
|
53 |
|
1583 |
mathias |
54 |
//public void afficherNbPoints();
|
1566 |
mathias |
55 |
|
1583 |
mathias |
56 |
//public void masquerNbPoints();
|
1566 |
mathias |
57 |
|
629 |
aurelien |
58 |
public void reinitialiserVotes();
|
939 |
benjamin |
59 |
|
1583 |
mathias |
60 |
public void rafraichir(int moyenneVote, int nbVotes, int nombrePoints, double moyenneArithmetique, double mediane, HashMap<Integer,Integer> occurrencesParNote, double moyennePonderee);
|
939 |
benjamin |
61 |
|
629 |
aurelien |
62 |
public void ajouterAuParent(HasWidgets composite);
|
1095 |
gduche |
63 |
|
1084 |
gduche |
64 |
public void afficherVotePrisEnCompte();
|
1095 |
gduche |
65 |
|
1085 |
gduche |
66 |
public HasWidgets getZoneFleur();
|
1095 |
gduche |
67 |
|
1086 |
gduche |
68 |
public HasText getZoneProtocole();
|
1095 |
gduche |
69 |
|
1583 |
mathias |
70 |
public HasText getNbVotes();
|
|
|
71 |
|
|
|
72 |
//public HasText getNbPoints();
|
|
|
73 |
|
|
|
74 |
public HasClickHandlers getLienNbVotes();
|
|
|
75 |
|
1088 |
gduche |
76 |
public void setNoteGenerale(int note);
|
1095 |
gduche |
77 |
|
1092 |
gduche |
78 |
public void afficherVoteModifie();
|
1095 |
gduche |
79 |
|
|
|
80 |
public HasMouseMoveHandlers getZoneVoter();
|
|
|
81 |
public void masquerZoneVoter();
|
1266 |
aurelien |
82 |
|
|
|
83 |
public void setNoteGeneraleToolTip(double valeurVoteTotalPrecise);
|
1471 |
aurelien |
84 |
|
1583 |
mathias |
85 |
public void desactiverInteractionVote();
|
1471 |
aurelien |
86 |
|
1583 |
mathias |
87 |
public void activerInteractionVote();
|
1471 |
aurelien |
88 |
|
1583 |
mathias |
89 |
public void afficherVoteSupprime();
|
|
|
90 |
|
|
|
91 |
public Panel getPanneauDetailVotes();
|
|
|
92 |
|
|
|
93 |
public void afficherPanneauDetailVotes();
|
|
|
94 |
|
|
|
95 |
public void masquerPanneauDetailVotes();
|
|
|
96 |
|
|
|
97 |
public HasClickHandlers getLienPanneauFermer();
|
629 |
aurelien |
98 |
}
|
939 |
benjamin |
99 |
|
629 |
aurelien |
100 |
private Vue vue;
|
423 |
gduche |
101 |
private Protocole protocole;
|
629 |
aurelien |
102 |
private Image image;
|
939 |
benjamin |
103 |
|
629 |
aurelien |
104 |
private int valeurVoteDefaut = -1;
|
|
|
105 |
private int valeurVoteUtilisateur = -1;
|
|
|
106 |
private int valeurVoteTotal = 0;
|
1583 |
mathias |
107 |
private double moyenneArithmetique = 0;
|
|
|
108 |
private double mediane = 0;
|
1566 |
mathias |
109 |
private int nombrePoints = 0;
|
1266 |
aurelien |
110 |
private double valeurVoteTotalPrecise = 0.0;
|
1583 |
mathias |
111 |
private HashMap<Integer,Integer> occurrencesParNote;
|
939 |
benjamin |
112 |
|
|
|
113 |
// TODO: on devrait passer un conteneur qui permet d'accéder à ces services
|
959 |
benjamin |
114 |
private VoteProtocoleService voteProtocoleService;
|
939 |
benjamin |
115 |
|
1095 |
gduche |
116 |
public MoyenneVotePresenteur(Image image, Protocole protocole, Vue vue,
|
|
|
117 |
VoteProtocoleService voteProtocoleService) {
|
629 |
aurelien |
118 |
this.vue = vue;
|
423 |
gduche |
119 |
this.protocole = protocole;
|
629 |
aurelien |
120 |
this.image = image;
|
959 |
benjamin |
121 |
this.voteProtocoleService = voteProtocoleService;
|
1095 |
gduche |
122 |
|
1086 |
gduche |
123 |
String nomProtocole = protocole.getNom();
|
1095 |
gduche |
124 |
nomProtocole = nomProtocole.substring(0, 1).toUpperCase()
|
|
|
125 |
+ nomProtocole.substring(1).toLowerCase();
|
1086 |
gduche |
126 |
vue.getZoneProtocole().setText(nomProtocole);
|
9 |
benjamin |
127 |
}
|
|
|
128 |
|
629 |
aurelien |
129 |
public void go(HasWidgets composite) {
|
|
|
130 |
vue.ajouterAuParent(composite);
|
423 |
gduche |
131 |
gererEvenements();
|
629 |
aurelien |
132 |
rafraichirVue();
|
9 |
benjamin |
133 |
}
|
939 |
benjamin |
134 |
|
423 |
gduche |
135 |
public void gererEvenements() {
|
1095 |
gduche |
136 |
|
|
|
137 |
vue.getZoneVoter().addMouseMoveHandler(new MouseMoveHandler() {
|
|
|
138 |
|
|
|
139 |
@Override
|
|
|
140 |
public void onMouseMove(MouseMoveEvent event) {
|
|
|
141 |
vue.masquerZoneVoter();
|
|
|
142 |
}
|
|
|
143 |
});
|
|
|
144 |
|
423 |
gduche |
145 |
vue.getVotes().addClickHandler(new ClickHandler() {
|
|
|
146 |
@Override
|
|
|
147 |
public void onClick(ClickEvent event) {
|
629 |
aurelien |
148 |
valeurVoteUtilisateur = vue.getValeurVote();
|
1471 |
aurelien |
149 |
enregistrerVote();
|
423 |
gduche |
150 |
vue.afficherBoutonAnnuler();
|
|
|
151 |
}
|
|
|
152 |
});
|
939 |
benjamin |
153 |
|
423 |
gduche |
154 |
vue.getBoutonAnnuler().addClickHandler(new ClickHandler() {
|
|
|
155 |
@Override
|
|
|
156 |
public void onClick(ClickEvent event) {
|
629 |
aurelien |
157 |
valeurVoteUtilisateur = valeurVoteDefaut;
|
423 |
gduche |
158 |
vue.masquerBoutonAnnuler();
|
1471 |
aurelien |
159 |
supprimerVote();
|
423 |
gduche |
160 |
vue.reinitialiserVotes();
|
|
|
161 |
}
|
|
|
162 |
});
|
1583 |
mathias |
163 |
|
|
|
164 |
// Affiche un chouette panneau qui montre le détail des votes
|
|
|
165 |
vue.getLienNbVotes().addClickHandler(new ClickHandler() {
|
|
|
166 |
@Override
|
|
|
167 |
public void onClick(ClickEvent event) {
|
|
|
168 |
if (vue.getPanneauDetailVotes().isVisible()) {
|
|
|
169 |
vue.masquerPanneauDetailVotes();
|
|
|
170 |
} else {
|
|
|
171 |
vue.afficherPanneauDetailVotes();
|
|
|
172 |
}
|
|
|
173 |
}
|
|
|
174 |
});
|
|
|
175 |
|
|
|
176 |
vue.getLienPanneauFermer().addClickHandler(new ClickHandler() {
|
|
|
177 |
@Override
|
|
|
178 |
public void onClick(ClickEvent event) {
|
|
|
179 |
vue.masquerPanneauDetailVotes();
|
|
|
180 |
}
|
|
|
181 |
});
|
|
|
182 |
|
1471 |
aurelien |
183 |
BusEvenementiel.getInstance().addHandler(EvenementChangementEtatUtilisateur.TYPE, new GestionnaireEvenementChangementEtatUtilisateur() {
|
423 |
gduche |
184 |
@Override
|
1471 |
aurelien |
185 |
public void onModificationEtatUtilisateur(EvenementChangementEtatUtilisateur evenementChangementEtatUtilisateur) {
|
|
|
186 |
rafraichirVue();
|
423 |
gduche |
187 |
}
|
|
|
188 |
});
|
|
|
189 |
}
|
939 |
benjamin |
190 |
|
629 |
aurelien |
191 |
public void setValeurVoteUtilisateur(int valeurVoteUtilisateur) {
|
|
|
192 |
this.valeurVoteUtilisateur = valeurVoteUtilisateur;
|
|
|
193 |
}
|
939 |
benjamin |
194 |
|
423 |
gduche |
195 |
public void enregistrerVote() {
|
1471 |
aurelien |
196 |
vue.desactiverInteractionVote();
|
939 |
benjamin |
197 |
final VoteProtocole voteProtocole = new VoteProtocole();
|
423 |
gduche |
198 |
voteProtocole.setProtocole(this.protocole);
|
629 |
aurelien |
199 |
voteProtocole.setVote(valeurVoteUtilisateur);
|
1095 |
gduche |
200 |
String idContributeur = CacheClient.getInstance().getUtilisateur()
|
|
|
201 |
.getId();
|
823 |
aurelien |
202 |
voteProtocole.setContributeur(idContributeur);
|
1471 |
aurelien |
203 |
|
|
|
204 |
//TODO: ceci devrait pouvoir être factorisé
|
1095 |
gduche |
205 |
if (image.utilisateurAVotePourProtocole(this.protocole.getId() + "",
|
|
|
206 |
idContributeur)) {
|
1471 |
aurelien |
207 |
voteProtocole.setId(image.getVotesProtocoles(this.protocole.getId()+"").get(idContributeur).getId());
|
|
|
208 |
VoteProtocoleCallback vpc = new VoteProtocoleCallback() {
|
|
|
209 |
@Override
|
|
|
210 |
public void surRetour(Void objetRetour) {
|
|
|
211 |
image.ajouterVoteProtocole(voteProtocole);
|
|
|
212 |
rafraichirVue();
|
|
|
213 |
vue.afficherVoteModifie();
|
|
|
214 |
vue.activerInteractionVote();
|
|
|
215 |
}
|
|
|
216 |
};
|
1095 |
gduche |
217 |
voteProtocoleService.modifierVote(image.getIdImage(),
|
|
|
218 |
voteProtocole, vpc);
|
823 |
aurelien |
219 |
} else {
|
1471 |
aurelien |
220 |
AjoutVoteProtocoleCallback vpc = new AjoutVoteProtocoleCallback() {
|
|
|
221 |
@Override
|
|
|
222 |
public void surRetour(String idVote) {
|
|
|
223 |
voteProtocole.setId(idVote);
|
|
|
224 |
image.ajouterVoteProtocole(voteProtocole);
|
|
|
225 |
rafraichirVue();
|
|
|
226 |
vue.afficherVotePrisEnCompte();
|
|
|
227 |
vue.activerInteractionVote();
|
|
|
228 |
}
|
|
|
229 |
};
|
1095 |
gduche |
230 |
voteProtocoleService.ajouterVote(image.getIdImage(), voteProtocole,
|
|
|
231 |
vpc);
|
823 |
aurelien |
232 |
}
|
629 |
aurelien |
233 |
}
|
1471 |
aurelien |
234 |
|
|
|
235 |
public void supprimerVote() {
|
|
|
236 |
vue.desactiverInteractionVote();
|
|
|
237 |
final String idContributeur = CacheClient.getInstance().getUtilisateur()
|
|
|
238 |
.getId();
|
|
|
239 |
final VoteProtocole voteProtocole = image.getVotesProtocoles(protocole.getId()).get(idContributeur);
|
|
|
240 |
VoteProtocoleCallback vpc = new VoteProtocoleCallback() {
|
|
|
241 |
@Override
|
|
|
242 |
public void surRetour(Void objetRetour) {
|
|
|
243 |
// TODO: voir si l'on affiche un message en cas de succès ?
|
|
|
244 |
image.supprimerVoteProtocole(protocole.getId() + "", idContributeur);
|
|
|
245 |
rafraichirVue();
|
|
|
246 |
vue.afficherVoteSupprime();
|
|
|
247 |
vue.activerInteractionVote();
|
|
|
248 |
}
|
939 |
benjamin |
249 |
|
1471 |
aurelien |
250 |
};
|
|
|
251 |
voteProtocoleService.supprimerVote(image.getIdImage(), voteProtocole, vpc);
|
|
|
252 |
}
|
|
|
253 |
|
629 |
aurelien |
254 |
public int getValeurVoteTotal() {
|
|
|
255 |
return valeurVoteTotal;
|
|
|
256 |
}
|
|
|
257 |
|
|
|
258 |
public IsWidget getVue() {
|
|
|
259 |
return vue;
|
|
|
260 |
}
|
939 |
benjamin |
261 |
|
629 |
aurelien |
262 |
private void rafraichirVue() {
|
1266 |
aurelien |
263 |
valeurVoteTotal = calculerMoyenneVotesArrondie();
|
1583 |
mathias |
264 |
moyenneArithmetique = calculerMoyenneVotes();
|
|
|
265 |
mediane = calculerMedianeVotes();
|
1566 |
mathias |
266 |
valeurVoteTotalPrecise = calculerMoyennePondereeVotes();
|
|
|
267 |
nombrePoints = calculerNombrePointsEchelleArbitraire();
|
1095 |
gduche |
268 |
VoteProtocole voteProtocole = image.getVotesProtocoles(
|
|
|
269 |
protocole.getId()).get(
|
|
|
270 |
CacheClient.getInstance().getUtilisateur().getId());
|
1088 |
gduche |
271 |
int voteUtilisateur = 0;
|
|
|
272 |
if (voteProtocole != null) {
|
|
|
273 |
voteUtilisateur = voteProtocole.getVote();
|
1095 |
gduche |
274 |
vue.masquerZoneVoter();
|
1088 |
gduche |
275 |
}
|
1471 |
aurelien |
276 |
|
|
|
277 |
if(image.utilisateurAVotePourProtocole(protocole.getId()+"", CacheClient.getInstance().getUtilisateur().getId())) {
|
|
|
278 |
vue.afficherBoutonAnnuler();
|
|
|
279 |
}
|
1095 |
gduche |
280 |
|
|
|
281 |
VoteFleurPresenteur presenteurFleur = new VoteFleurPresenteur(
|
|
|
282 |
new VoteFleurVue());
|
1085 |
gduche |
283 |
presenteurFleur.setNote(valeurVoteTotal);
|
1088 |
gduche |
284 |
vue.setNoteGenerale(valeurVoteTotal);
|
1266 |
aurelien |
285 |
vue.setNoteGeneraleToolTip(valeurVoteTotalPrecise);
|
1085 |
gduche |
286 |
presenteurFleur.go(vue.getZoneFleur());
|
1583 |
mathias |
287 |
vue.rafraichir(voteUtilisateur, image.getVotesProtocoles(protocole.getId()).size(), nombrePoints,
|
|
|
288 |
moyenneArithmetique, mediane, occurrencesParNote, valeurVoteTotalPrecise);
|
629 |
aurelien |
289 |
}
|
1566 |
mathias |
290 |
|
1583 |
mathias |
291 |
public double calculerMedianeVotes() {
|
|
|
292 |
double med = 0;
|
|
|
293 |
// comparateur de votes (le bulldozer Java™ pour écraser une mouche)
|
|
|
294 |
class Comparatisateur3000 implements Comparator<VoteProtocole> {
|
|
|
295 |
@Override
|
|
|
296 |
public int compare(VoteProtocole v1, VoteProtocole v2) {
|
|
|
297 |
if (v1.getVote() > v2.getVote()) {
|
|
|
298 |
return 1;
|
|
|
299 |
} else if (v1.getVote() > v2.getVote()) {
|
|
|
300 |
return -1;
|
|
|
301 |
} else {
|
|
|
302 |
return 0;
|
|
|
303 |
}
|
|
|
304 |
}
|
|
|
305 |
}
|
|
|
306 |
// conversion en liste triable
|
|
|
307 |
List<VoteProtocole> liste = new ArrayList<VoteProtocole>(image.getVotesProtocoles(protocole.getId()).values());
|
|
|
308 |
Collections.sort(liste, new Comparatisateur3000());
|
|
|
309 |
int longueur = liste.size();
|
|
|
310 |
if (longueur > 0) {
|
|
|
311 |
if (longueur % 2 == 0) {
|
|
|
312 |
// moyenne des éléments centraux
|
|
|
313 |
med = (liste.get(longueur / 2 - 1).getVote() + liste.get(longueur / 2).getVote()) / 2;
|
|
|
314 |
} else {
|
|
|
315 |
// élément central
|
|
|
316 |
med = liste.get((int) (longueur / 2)).getVote();
|
|
|
317 |
}
|
|
|
318 |
}
|
|
|
319 |
return med;
|
|
|
320 |
}
|
|
|
321 |
|
|
|
322 |
// calcule la moyenne arithmétique
|
|
|
323 |
public double calculerMoyenneVotes() {
|
|
|
324 |
double valeurVote = 0;
|
|
|
325 |
double nbVote = 0;
|
|
|
326 |
for (Iterator<String> iterator = image
|
|
|
327 |
.getVotesProtocoles(protocole.getId()).keySet().iterator(); iterator
|
|
|
328 |
.hasNext();) {
|
|
|
329 |
VoteProtocole imageCelValidationData = image.getVotesProtocoles(
|
|
|
330 |
protocole.getId()).get(iterator.next());
|
|
|
331 |
valeurVote += (double) imageCelValidationData.getVote() / 5;
|
|
|
332 |
nbVote++;
|
|
|
333 |
}
|
|
|
334 |
|
|
|
335 |
if (nbVote > 0) {
|
|
|
336 |
valeurVote /= nbVote;
|
|
|
337 |
valeurVote *= 5;
|
|
|
338 |
}
|
|
|
339 |
|
|
|
340 |
return valeurVote;
|
|
|
341 |
}
|
|
|
342 |
|
1566 |
mathias |
343 |
// Calcule une moyenne, où chaque note est pondérée par son nombre d'occurrences au carré.
|
|
|
344 |
// voir http://www.tela-botanica.org/wikini/DevInformatiques/wakka.php?wiki=AppliDelCalculVotes
|
|
|
345 |
public double calculerMoyennePondereeVotes() {
|
|
|
346 |
|
|
|
347 |
double score = 0;
|
|
|
348 |
double diviseur = 0;
|
|
|
349 |
int nbOccurrences;
|
1583 |
mathias |
350 |
// mise à jour des occurrences par note, utile pour le panneau de détails
|
|
|
351 |
occurrencesParNote = new HashMap<Integer,Integer>();
|
1566 |
mathias |
352 |
|
|
|
353 |
// rangement par note => occurrences
|
|
|
354 |
for (String clef : image.getVotesProtocoles(protocole.getId()).keySet()) {
|
|
|
355 |
VoteProtocole imageCelValidationData = image.getVotesProtocoles(protocole.getId()).get(clef);
|
|
|
356 |
nbOccurrences = 1;
|
|
|
357 |
if (occurrencesParNote.containsKey(imageCelValidationData.getVote())) {
|
|
|
358 |
nbOccurrences = occurrencesParNote.get(imageCelValidationData.getVote()) + 1;
|
|
|
359 |
}
|
|
|
360 |
occurrencesParNote.put(imageCelValidationData.getVote(), nbOccurrences);
|
629 |
aurelien |
361 |
}
|
939 |
benjamin |
362 |
|
1566 |
mathias |
363 |
// calcul pondéré
|
|
|
364 |
for (Integer clef : occurrencesParNote.keySet()) {
|
|
|
365 |
score += clef * occurrencesParNote.get(clef) * occurrencesParNote.get(clef);
|
|
|
366 |
diviseur += occurrencesParNote.get(clef) * occurrencesParNote.get(clef);
|
629 |
aurelien |
367 |
}
|
|
|
368 |
|
1566 |
mathias |
369 |
if (diviseur > 0) {
|
|
|
370 |
score /= diviseur;
|
|
|
371 |
}
|
|
|
372 |
|
|
|
373 |
return score;
|
1266 |
aurelien |
374 |
}
|
|
|
375 |
|
1566 |
mathias |
376 |
// remplace chaque note par un nombre de points noté dans "echelle" afin de favoriser
|
|
|
377 |
// les note fortes (5 et 4), pour le défi photo notamment
|
|
|
378 |
public int calculerNombrePointsEchelleArbitraire() {
|
|
|
379 |
int points = 0;
|
1583 |
mathias |
380 |
//int[] echelle = {-1,0,1,4,20};
|
|
|
381 |
int[] echelle = {1,10,100,1000,10000};
|
1566 |
mathias |
382 |
|
|
|
383 |
for (String clef : image.getVotesProtocoles(protocole.getId()).keySet()) {
|
|
|
384 |
VoteProtocole imageCelValidationData = image.getVotesProtocoles(protocole.getId()).get(clef);
|
|
|
385 |
points += echelle[imageCelValidationData.getVote() - 1];
|
|
|
386 |
}
|
|
|
387 |
|
|
|
388 |
return points;
|
|
|
389 |
}
|
|
|
390 |
|
1266 |
aurelien |
391 |
public int calculerMoyenneVotesArrondie() {
|
1566 |
mathias |
392 |
//double valeurVote = calculerMoyenneVotes();
|
|
|
393 |
double valeurVote = calculerMoyennePondereeVotes();
|
939 |
benjamin |
394 |
return (int) Math.round(valeurVote);
|
423 |
gduche |
395 |
}
|
9 |
benjamin |
396 |
}
|