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 165
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
 
Line 3... Line 3...
3
import java.util.Date;
3
import java.util.Date;
Line 4... Line 4...
4
 
4
 
-
 
5
public class VoteDetermination extends Vote {
-
 
6
 
Line 5... Line -...
5
public class VoteDetermination {
-
 
6
 
-
 
7
	private static final long serialVersionUID = -1017065180398557172L;
-
 
8
 
-
 
9
	private String id;
-
 
10
 
-
 
11
	private int vote;
-
 
12
 
-
 
13
	private String contributeur;
7
	private static final long serialVersionUID = -1017065180398557172L;
14
 
8
	
15
	private Date date;
9
	private PropositionDetermination propositionDetermination;
Line 16... Line 10...
16
 
10
 
17
	public int getVote() {
-
 
18
		return vote;
-
 
19
	}
-
 
20
 
-
 
21
	public void setVote(int vote) {
-
 
22
		this.vote = vote;
-
 
23
	}
-
 
24
 
11
	public PropositionDetermination getPropositionDetermination() {
25
	public String getContributeur() {
12
		return propositionDetermination;
26
		return contributeur;
-
 
27
	}
-
 
28
 
-
 
29
	public void setContributeur(String contributeur) {
-
 
30
		this.contributeur = contributeur;
-
 
31
	}
-
 
32
 
-
 
33
	public String getId() {
-
 
34
		return id;
-
 
35
	}
-
 
36
 
-
 
37
	public void setId(String id) {
-
 
38
		this.id = id;
-
 
39
	}
-
 
40
 
-
 
41
	public Date getDate() {
-
 
42
		return date;
13
	}
43
	}
14