Subversion Repositories eFlore/Applications.del

Rev

Rev 1409 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1409 Rev 2080
1
package org.tela_botanica.del.client.modeles;
1
package org.tela_botanica.del.client.modeles;
2
 
2
 
3
public class Protocole {
3
public class Protocole {
4
 
4
 
5
	private int id;
5
	private int id;
6
	private String nom;
6
	private String nom;
7
	private String description;
7
	private String description;
8
	private String tag;
8
	private String tag;
9
	private String motsClesProtocoles;
9
	private String motsClesProtocoles;
-
 
10
	private boolean doitEtreIdentifiePourVoter = false;
10
 
11
 
11
	public int getId() {
12
	public int getId() {
12
		return id;
13
		return id;
13
	}
14
	}
14
 
15
 
15
	public void setId(int id) {
16
	public void setId(int id) {
16
		this.id = id;
17
		this.id = id;
17
	}
18
	}
18
 
19
 
19
	public String getNom() {
20
	public String getNom() {
20
		return nom;
21
		return nom;
21
	}
22
	}
22
 
23
 
23
	public void setNom(String nom) {
24
	public void setNom(String nom) {
24
		this.nom = nom;
25
		this.nom = nom;
25
	}
26
	}
26
	
27
	
27
	public String getDescription() {
28
	public String getDescription() {
28
		return description;
29
		return description;
29
	}
30
	}
30
 
31
 
31
	public void setDescription(String description) {
32
	public void setDescription(String description) {
32
		this.description = description;
33
		this.description = description;
33
	}
34
	}
34
	
35
	
35
	public String getTag() {
36
	public String getTag() {
36
		return tag;
37
		return tag;
37
	}
38
	}
38
 
39
 
39
	public void setTag(String tag) {
40
	public void setTag(String tag) {
40
		this.tag = tag;
41
		this.tag = tag;
41
	}
42
	}
42
	
43
	
43
	public void setMotsClesProtocole(String motsClesProtocole) {
44
	public void setMotsClesProtocole(String motsClesProtocole) {
44
		this.motsClesProtocoles = motsClesProtocole;
45
		this.motsClesProtocoles = motsClesProtocole;
45
	}
46
	}
46
	
47
	
47
	public String getMotsClesProtocole() {
48
	public String getMotsClesProtocole() {
48
		return motsClesProtocoles;
49
		return motsClesProtocoles;
49
	}
50
	}
-
 
51
 
-
 
52
	public boolean doitEtreIdentifiePourVoter() {
-
 
53
		return doitEtreIdentifiePourVoter;
-
 
54
	}
-
 
55
 
-
 
56
	public void setDoitEtreIdentifiePourVoter(boolean doitEtreIdentifiePourVoter) {
-
 
57
		this.doitEtreIdentifiePourVoter = doitEtreIdentifiePourVoter;
-
 
58
	}
50
 
59
 
51
}
60
}