Subversion Repositories eFlore/Applications.del

Rev

Rev 128 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 128 Rev 131
Line 34... Line 34...
34
		"<th> "+I18n.getVocabulary().date()+" </th>"+
34
		"<th> "+I18n.getVocabulary().date()+" </th>"+
35
		"<th> "+I18n.getVocabulary().commentaire()+" </th>"+
35
		"<th> "+I18n.getVocabulary().commentaire()+" </th>"+
36
		"</tr>";
36
		"</tr>";
Line 37... Line 37...
37
		
37
		
-
 
38
		for (ObservationValidation observationDetermination : determinations) {
-
 
39
			
-
 
40
			String commentaire = (observationDetermination.getCommentaire() != null) ? observationDetermination.getCommentaire() : "";
38
		for (ObservationValidation observationDetermination : determinations) {
41
			
39
			ligne += "<tr>"+
42
			ligne += "<tr>"+
40
							"<td>"+observationDetermination.getEspece()+"</td>"+
43
							"<td>"+observationDetermination.getEspece()+"</td>"+
41
							"<td>"+observationDetermination.getContributeur()+"</td>"+
44
							"<td>"+observationDetermination.getContributeur()+"</td>"+
42
							"<td>"+observationDetermination.getPourcentageConfiance()+"</td>"+
45
							"<td>"+observationDetermination.getPourcentageConfiance()+"</td>"+
43
							"<td>"+observationDetermination.getDate()+"</td>"+
46
							"<td>"+observationDetermination.getDate()+"</td>"+
44
							"<td>"+observationDetermination.getCommentaire()+"</td>"+
47
							"<td>"+commentaire+"</td>"+
45
					"</tr>";
48
					"</tr>";
46
		}
49
		}
47
		ligne += "</table>";
50
		ligne += "</table>";
48
		htmlTableau.setHTML(ligne);
51
		htmlTableau.setHTML(ligne);