Subversion Repositories eFlore/Applications.del

Rev

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

Rev 911 Rev 919
Line 6... Line 6...
6
 
6
 
Line 7... Line 7...
7
public class PropositionDetermination extends InterventionForum implements Serializable {
7
public class PropositionDetermination extends InterventionForum implements Serializable {
8
 
8
 
-
 
9
	private static final long serialVersionUID = 840032625524143547L;
Line 9... Line 10...
9
	private static final long serialVersionUID = 840032625524143547L;
10
	private String id, espece, commentaire;
10
	private String id, espece, commentaire;
11
	private int nbCommentaires = 0;
Line 68... Line 69...
68
	}
69
	}
Line 69... Line 70...
69
 
70
 
70
	public String getCommentaire() {
71
	public String getCommentaire() {
71
		return commentaire;
72
		return commentaire;
-
 
73
	}
-
 
74
	
-
 
75
	public void setNbCommentaires(int nbCommentaires) {
-
 
76
		this.nbCommentaires = nbCommentaires;
-
 
77
	}
-
 
78
	
-
 
79
	public int getTotalCommentaires() {
-
 
80
		if(nbCommentaires == 0) {
-
 
81
			nbCommentaires =  super.getTotalCommentaires();
-
 
82
		}
-
 
83
		
-
 
84
		return nbCommentaires;
72
	}
85
	}