Subversion Repositories eFlore/Applications.del

Rev

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

Rev 167 Rev 177
Line 170... Line 170...
170
 
170
 
Line 171... Line 171...
171
			image.getVoteProtocoles().add(voteProtocole2);
171
			image.getVoteProtocoles().add(voteProtocole2);
172
 
172
 
173
			observations.add(observation);
-
 
174
		}
-
 
Line -... Line 173...
-
 
173
			observations.add(observation);
-
 
174
		}
175
		
175
 
176
		ajouterVotesAleatoires();
176
		ajouterVotesAleatoires();
177
 
177
		
178
		pourcentagesConfiance.add(I18n.getVocabulary().confiance_simple_suggestion());
178
		pourcentagesConfiance.add(I18n.getVocabulary().confiance_simple_suggestion());
Line 193... Line 193...
193
				validation.ajouterVoteDetermination(vd);
193
				validation.ajouterVoteDetermination(vd);
194
			}
194
			}
195
		}
195
		}
196
	}
196
	}
Line 197... Line -...
197
 
-
 
198
	public List<Observation> getObservations(HashMap<String, String> champsRecherche) {
-
 
199
		return getObservations();
-
 
Line 200... Line 197...
200
	}
197
 
201
 
198
 
202
	public List<Observation> getObservations() {
199
	public List<Observation> getObservations() {
Line 203... Line 200...
203
		return observations;
200
		return observations;
204
	}
201
	}
205
 
202
 
Line 206... Line 203...
206
	public List<Image> getImages() {
203
	public List<Image> getImages() {
207
		return images;
-
 
208
	}
204
		return images;
209
 
205
	}
210
	public List<VoteProtocole> getValidationData(String idImage) {
206
 
211
		for (Observation observation : observations) {
-
 
212
			for (Image image : observation.getImages()) {
207
	public List<VoteProtocole> getVote(String idImage) {
-
 
208
		for (Image image : images) {
213
				if (image.getIdImage().equals(idImage)) {
209
			if (image.getIdImage().equals(idImage)) {
214
					return image.getVoteProtocoles();
210
				return image.getVoteProtocoles();
215
				}
211
			}
Line 216... Line 212...
216
			}
212
 
Line 217... Line 213...
217
		}
213
		}
218
		return null;
-
 
-
 
214
		return null;
219
	}
215
	}
220
 
216
 
221
	public List<VoteProtocole> getValidationDataByImageAndProtocol(String idImage, String protocolName) {
217
	public List<VoteProtocole> getVoteByImageAndProtocol(String idImage, String protocolName) {
222
 
218
 
223
		List<VoteProtocole> voteProtocoles = new ArrayList<VoteProtocole>();
219
		List<VoteProtocole> voteProtocolesLocal = new ArrayList<VoteProtocole>();
224
		for (Observation observation : observations) {
-
 
225
			for (Image image : observation.getImages()) {
220
 
226
				if (image.getIdImage().equals(idImage)) {
221
		for (Image image : images) {
227
					for (VoteProtocole voteProtocole : image.getVoteProtocoles()) {
222
			if (image.getIdImage().equals(idImage)) {
228
						if (voteProtocole.getProtocol().getNom().equals(protocolName)) {
-
 
229
							voteProtocoles.add(voteProtocole);
-
 
230
						}
-
 
Line 231... Line -...
231
					}
-
 
-
 
223
				for (VoteProtocole voteProtocole : image.getVoteProtocoles()) {
232
				}
224
					if (voteProtocole.getProtocol().getNom().equals(protocolName)) {
233
			}
225
						voteProtocolesLocal.add(voteProtocole);
Line 234... Line 226...
234
		}
226
					}
235
		return voteProtocoles;
227
				}
236
	}
228
			}
Line 250... Line 242...
250
			}
242
			}
251
		}
243
		}
252
		return null;
244
		return null;
253
	}
245
	}
Line -... Line 246...
-
 
246
 
-
 
247
	public List<Protocole> getProtocoles() {
-
 
248
		return protocoles;
-
 
249
	}
254
 
250
 
255
	public void saveVote(VoteProtocole voteProtocole) {
251
	public void saveVote(VoteProtocole voteProtocole) {
256
		// TODO implement method
252
		// TODO implement method
Line 257... Line 253...
257
	}
253
	}