Subversion Repositories eFlore/Applications.del

Rev

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

Rev 147 Rev 168
Line 7... Line 7...
7
public class PropositionDetermination implements Serializable {
7
public class PropositionDetermination implements Serializable {
Line 8... Line 8...
8
 
8
 
Line 9... Line 9...
9
	private static final long serialVersionUID = 840032625524143547L;
9
	private static final long serialVersionUID = 840032625524143547L;
10
 
-
 
11
	private String id;
-
 
Line 12... Line 10...
12
 
10
 
Line 13... Line -...
13
	private String idImage;
-
 
14
	
-
 
15
	private ArrayList<Commentaire> commentaires = new ArrayList<Commentaire>();
11
	private String id;
16
	
-
 
17
	private String pourcentageConfiance;
-
 
Line 18... Line 12...
18
	
12
	
Line 19... Line 13...
19
	private String espece;
13
	private ArrayList<Commentaire> commentaires = new ArrayList<Commentaire>();
Line 20... Line 14...
20
 
14
	
Line 21... Line -...
21
	private int vote;
-
 
22
	
-
 
23
	private ArrayList<VoteDetermination> votesDeterminations = new ArrayList<VoteDetermination>();
-
 
24
 
-
 
25
	private String contributeur;
-
 
26
 
15
	private String espece;
27
	private Date date;
16
	
28
 
17
	private ArrayList<VoteDetermination> votesDeterminations = new ArrayList<VoteDetermination>();
Line 29... Line 18...
29
	public int getVotePondere() {
18
 
Line 49... Line 38...
49
 
38
 
50
	public void setId(String id) {
39
	public void setId(String id) {
51
		this.id = id;
40
		this.id = id;
Line 52... Line -...
52
	}
-
 
53
 
-
 
54
	public String getIdImage() {
-
 
55
		return idImage;
-
 
56
	}
-
 
57
 
-
 
58
	public void setIdImage(String idImage) {
-
 
59
		this.idImage = idImage;
-
 
60
	}
41
	}
61
 
42
 
62
	public Date getDate() {
43
	public Date getDate() {
Line 63... Line 44...
63
		return date;
44
		return date;
Line 77... Line 58...
77
	
58
	
78
	public void ajouterCommentaire(Commentaire commentaire) {
59
	public void ajouterCommentaire(Commentaire commentaire) {
79
		this.commentaires.add(commentaire);
60
		this.commentaires.add(commentaire);
Line 80... Line -...
80
	}
-
 
81
 
-
 
82
	public String getPourcentageConfiance() {
-
 
83
		return pourcentageConfiance;
-
 
84
	}
-
 
85
 
-
 
86
	public void setPourcentageConfiance(String pourcentageConfiance) {
-
 
87
		this.pourcentageConfiance = pourcentageConfiance;
-
 
88
	}
61
	}
89
 
62
 
90
	public String getEspece() {
63
	public String getEspece() {
Line 91... Line 64...
91
		return espece;
64
		return espece;