Subversion Repositories eFlore/Applications.del

Rev

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

Rev 882 Rev 916
Line 33... Line 33...
33
	}
33
	}
Line 34... Line 34...
34
 
34
 
Line 35... Line 35...
35
	private void creerListeCommentaireRecursive(TreeItem parentTreeItem, List<Commentaire> commentaires) {
35
	private void creerListeCommentaireRecursive(TreeItem parentTreeItem, List<Commentaire> commentaires) {
36
 
36
 
37
		for (Commentaire commentaire : commentaires) {
37
		for (Commentaire commentaire : commentaires) {
38
			String commentaireHTML = commentaire.getCommentaire() + " " + commentaire.getAuteur() + "-" + formaterDatePourForum(commentaire.getDate());
38
			String commentaireHTML = commentaire.getCommentaire();
39
			HTML commentaireWidget = new HTML(commentaireHTML);
39
			HTML commentaireWidget = new HTML(commentaireHTML);
40
			parentTreeItem.setWidget(commentaireWidget);
40
			parentTreeItem.setWidget(commentaireWidget);
41
			if (commentaire.getListeCommentaires().size() != 0) {
41
			if (commentaire.getListeCommentaires().size() != 0) {