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
 
3
import java.io.Serializable;
3
import java.io.Serializable;
Line 4... Line 4...
4
import java.util.Date;
4
import java.util.Date;
Line 5... Line -...
5
 
-
 
6
public class VoteProtocole implements Serializable {
-
 
7
 
-
 
8
	/**
5
 
Line 9... Line -...
9
	 * 
-
 
10
	 */
-
 
11
	private static final long serialVersionUID = -1017065180398557172L;
-
 
12
 
-
 
13
	private String id;
-
 
14
 
-
 
15
	private int vote;
-
 
16
 
-
 
17
	private String contributeur;
6
public class VoteProtocole extends Vote implements Serializable {
Line 18... Line -...
18
 
-
 
19
	private Date date;
-
 
20
 
-
 
21
	private Protocole protocol;
-
 
22
 
-
 
23
	public int getVote() {
-
 
24
		return vote;
-
 
25
	}
-
 
26
 
-
 
27
	public void setVote(int vote) {
-
 
28
		this.vote = vote;
-
 
29
	}
-
 
30
 
-
 
31
	public String getContributeur() {
-
 
32
		return contributeur;
-
 
33
	}
-
 
34
 
-
 
35
	public void setContributeur(String contributeur) {
-
 
36
		this.contributeur = contributeur;
-
 
37
	}
-
 
38
 
-
 
39
	public String getId() {
-
 
40
		return id;
-
 
41
	}
-
 
42
 
-
 
43
	public void setId(String id) {
-
 
44
		this.id = id;
-
 
45
	}
-
 
46
 
-
 
47
	public Date getDate() {
-
 
48
		return date;
-
 
49
	}
-
 
50
 
7
 
51
	public void setDate(Date date) {
8
	private static final long serialVersionUID = -1017065180398557172L;
52
		this.date = date;
9
 
Line 53... Line 10...
53
	}
10
	private Protocole protocol;
54
 
11
 
55
	public Protocole getProtocol() {
12
	public Protocole getProtocol() {
56
		return protocol;
-
 
57
	}
13
		return protocol;