Subversion Repositories eFlore/Applications.del

Rev

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

Rev 371 Rev 423
Line 56... Line 56...
56
		public abstract void afficherZoneCache();
56
		public abstract void afficherZoneCache();
Line 57... Line 57...
57
 
57
 
Line 58... Line 58...
58
		public abstract HasWidgets getZoneVoter();
58
		public abstract HasWidgets getZoneVoter();
-
 
59
 
59
 
60
		public HasClickHandlers getNomAuteur();
60
		public HasClickHandlers getNomAuteur();
61
		
Line 61... Line 62...
61
		public HasClickHandlers getNomEspece();
62
		public HasClickHandlers getNomEspece();
Line 83... Line 84...
83
	}
84
	}
Line 84... Line 85...
84
 
85
 
85
	private void loadValidationData() {
86
	private void loadValidationData() {
86
		vue.getZoneVoter().clear();
87
		vue.getZoneVoter().clear();
87
		List<VoteProtocole> observationValidationDatas = validationService.getVoteByImageAndProtocol(image.getIdImage(), protocole.getNom());
88
		List<VoteProtocole> observationValidationDatas = validationService.getVoteByImageAndProtocol(image.getIdImage(), protocole.getNom());
-
 
89
		new MoyenneVotePresenteur(observationValidationDatas, image.getIdImage(), protocole).go(vue.getZoneVoter());
88
		new MoyenneVotePresenteur(observationValidationDatas).go(vue.getZoneVoter());
90
		
Line 89... Line 91...
89
	}
91
	}
Line 90... Line 92...
90
 
92