Subversion Repositories eFlore/Applications.del

Rev

Rev 966 | Rev 1005 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 966 Rev 1004
Line 27... Line 27...
27
		public void desactiverBoutons();
27
		public void desactiverBoutons();
28
		public void activerBoutons();
28
		public void activerBoutons();
29
		public void setVoteOuiEffectue();
29
		public void setVoteOuiEffectue();
30
		public void setVoteNonEffectue();
30
		public void setVoteNonEffectue();
31
		public void afficherVotePrisEnCompte(boolean b);
31
		public void afficherVotePrisEnCompte(boolean b);
-
 
32
		public void afficherVoteModifie(boolean b);
32
		public void toggleNomEspece();
33
		public void toggleNomEspece();
33
	}
34
	}
Line 34... Line 35...
34
 
35
 
35
	private Vue vue;
36
	private Vue vue;
Line 67... Line 68...
67
 
68
 
68
		vue.getBoutonOui().addClickHandler(new ClickHandler() {
69
		vue.getBoutonOui().addClickHandler(new ClickHandler() {
69
			@Override
70
			@Override
70
			public void onClick(ClickEvent event) {
71
			public void onClick(ClickEvent event) {
71
				voter(true);
-
 
-
 
72
				voter(true);
72
				vue.afficherVotePrisEnCompte(true);
73
				
73
			}
74
			}
Line 74... Line 75...
74
		});
75
		});
75
 
76
 
76
		vue.getBoutonNon().addClickHandler(new ClickHandler() {
77
		vue.getBoutonNon().addClickHandler(new ClickHandler() {
77
			@Override
78
			@Override
78
			public void onClick(ClickEvent event) {
-
 
-
 
79
			public void onClick(ClickEvent event) {
79
				voter(false);
80
				voter(false);
80
				vue.afficherVotePrisEnCompte(false);
81
			
81
			}
82
			}
Line 82... Line 83...
82
		});
83
		});
Line 102... Line 103...
102
					BusEvenementiel.getInstance().fireEvent(new EvenementVoteDetermination(vd));
103
					BusEvenementiel.getInstance().fireEvent(new EvenementVoteDetermination(vd));
103
				}
104
				}
104
			};
105
			};
Line 105... Line 106...
105
 
106
 
-
 
107
			if (moyenneVote.getPropositionAssociee().utilisateurAVotePourDetermination(vd.getContributeur())) {
106
			if (moyenneVote.getPropositionAssociee().utilisateurAVotePourDetermination(vd.getContributeur())) {
108
				
-
 
109
				voteDeterminationService.modifierVote(vd, vdc);
107
				voteDeterminationService.modifierVote(vd, vdc);
110
				vue.afficherVoteModifie(vd.getVote()==1);
-
 
111
			} else {
108
			} else {
112
				
-
 
113
				voteDeterminationService.ajouterVote(vd, vdc);
109
				voteDeterminationService.ajouterVote(vd, vdc);
114
				vue.afficherVotePrisEnCompte(vd.getVote()==1);
110
			}
115
			}
111
		}
116
		}
Line 112... Line 117...
112
	}
117
	}