Subversion Repositories eFlore/Applications.del

Rev

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

Rev 663 Rev 835
Line 7... Line 7...
7
public class PropositionDetermination extends InterventionForum implements Serializable {
7
public class PropositionDetermination extends InterventionForum implements Serializable {
Line 8... Line 8...
8
 
8
 
9
	private static final long serialVersionUID = 840032625524143547L;
9
	private static final long serialVersionUID = 840032625524143547L;
10
	private String id, espece;
10
	private String id, espece;
-
 
11
	private Map<String, VoteDetermination> votesDeterminations = new HashMap<String, VoteDetermination>();
Line -... Line 12...
-
 
12
	private Observation observation;
-
 
13
	
-
 
14
	public PropositionDetermination(Observation observation) {
Line 11... Line 15...
11
	private Map<String, VoteDetermination> votesDeterminations = new HashMap<String, VoteDetermination>();
15
		this.observation = observation;
12
	
16
	}
13
 
17
 
Line 36... Line 40...
36
	}
40
	}
Line 37... Line 41...
37
 
41
 
38
	public void setVotesDeterminations(Map<String, VoteDetermination> votesDeterminations) {
42
	public void setVotesDeterminations(Map<String, VoteDetermination> votesDeterminations) {
39
		this.votesDeterminations = votesDeterminations;
43
		this.votesDeterminations = votesDeterminations;
-
 
44
	}
-
 
45
	
-
 
46
	public boolean utilisateurAVotePourDetermination(String idContributeur) {
-
 
47
		return votesDeterminations.containsKey(idContributeur);
-
 
48
	}
-
 
49
 
-
 
50
	public Observation getObservation() {
-
 
51
		return observation;
-
 
52
	}
-
 
53
 
-
 
54
	public void setObservation(Observation observation) {
-
 
55
		this.observation = observation;
Line 40... Line 56...
40
	}
56
	}