Subversion Repositories eFlore/Applications.del

Rev

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

Rev 893 Rev 896
Line 5... Line 5...
5
import java.util.Map;
5
import java.util.Map;
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
 
Line 9... Line 9...
9
	private static final long serialVersionUID = 840032625524143547L;
9
	private static final long serialVersionUID = 840032625524143547L;
10
	private String espece;
10
	private String id, espece, commentaire;
Line 24... Line 24...
24
 
24
 
25
	public void ajouterVoteDetermination(VoteDetermination vd) {
25
	public void ajouterVoteDetermination(VoteDetermination vd) {
26
		votesDeterminations.put(vd.getContributeur(), vd);
26
		votesDeterminations.put(vd.getContributeur(), vd);
Line -... Line 27...
-
 
27
	}
-
 
28
 
-
 
29
	public String getId() {
-
 
30
		return id;
-
 
31
	}
-
 
32
 
-
 
33
	public void setId(String id) {
-
 
34
		this.id = id;
27
	}
35
	}
28
 
36
 
29
	public String getEspece() {
37
	public String getEspece() {
Line 30... Line 38...
30
		return espece;
38
		return espece;
Line 51... Line 59...
51
	}
59
	}
Line 52... Line 60...
52
 
60
 
53
	public void setObservation(Observation observation) {
61
	public void setObservation(Observation observation) {
54
		this.observation = observation;
62
		this.observation = observation;
55
	}
-
 
Line -... Line 63...
-
 
63
	}
-
 
64
	
-
 
65
	public void setCommentaire(String commentaire) {
-
 
66
		this.commentaire = commentaire;
-
 
67
	}
-
 
68
 
-
 
69
	public Object getCommentaire() {
56
 
70
		return commentaire;