Subversion Repositories eFlore/Applications.del

Rev

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

Rev 210 Rev 227
Line 1... Line 1...
1
package org.tela_botanica.del.client.modeles;
1
package org.tela_botanica.del.client.modeles;
Line 2... Line 2...
2
 
2
 
3
import java.io.Serializable;
3
import java.io.Serializable;
4
import java.util.ArrayList;
4
import java.util.ArrayList;
-
 
5
import java.util.Date;
-
 
6
import java.util.HashMap;
-
 
7
import java.util.Map;
-
 
8
 
Line 5... Line 9...
5
import java.util.Date;
9
import com.google.gwt.user.client.Window;
Line 6... Line 10...
6
 
10
 
Line 12... Line 16...
12
	
16
	
Line 13... Line 17...
13
	private ArrayList<Commentaire> commentaires = new ArrayList<Commentaire>();
17
	private ArrayList<Commentaire> commentaires = new ArrayList<Commentaire>();
Line 14... Line 18...
14
	
18
	
Line 15... Line 19...
15
	private String espece;
19
	private String espece;
Line 16... Line 20...
16
	
20
	
Line 17... Line 21...
17
	private ArrayList<VoteDetermination> votesDeterminations = new ArrayList<VoteDetermination>();
21
	private Map<String,VoteDetermination> votesDeterminations = new HashMap<String,VoteDetermination>();
18
 
22
 
19
	private String contributeur;
23
	private String contributeur;
Line 20... Line 24...
20
 
24
 
21
	private Date date;
25
	private Date date;
22
 
26
 
Line 66... Line 70...
66
 
70
 
67
	public void setEspece(String espece) {
71
	public void setEspece(String espece) {
68
		this.espece = espece;
72
		this.espece = espece;
Line 69... Line 73...
69
	}
73
	}
70
 
74
 
71
	public ArrayList<VoteDetermination> getVotesDeterminations() {
75
	public Map<String, VoteDetermination> getVotesDeterminations() {
Line 72... Line 76...
72
		return votesDeterminations;
76
		return votesDeterminations;
73
	}
77
	}
74
 
78
 
75
	public void setVotesDeterminations(ArrayList<VoteDetermination> votesDeterminations) {
79
	public void setVotesDeterminations(Map<String, VoteDetermination> votesDeterminations) {