Subversion Repositories eFlore/Applications.del

Rev

Rev 1220 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1220 Rev 1409
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
 
10
 
10
	public int getId() {
11
	public int getId() {
11
		return id;
12
		return id;
12
	}
13
	}
13
 
14
 
14
	public void setId(int id) {
15
	public void setId(int id) {
15
		this.id = id;
16
		this.id = id;
16
	}
17
	}
17
 
18
 
18
	public String getNom() {
19
	public String getNom() {
19
		return nom;
20
		return nom;
20
	}
21
	}
21
 
22
 
22
	public void setNom(String nom) {
23
	public void setNom(String nom) {
23
		this.nom = nom;
24
		this.nom = nom;
24
	}
25
	}
25
	
26
	
26
	public String getDescription() {
27
	public String getDescription() {
27
		return description;
28
		return description;
28
	}
29
	}
29
 
30
 
30
	public void setDescription(String description) {
31
	public void setDescription(String description) {
31
		this.description = description;
32
		this.description = description;
32
	}
33
	}
33
	
34
	
34
	public String getTag() {
35
	public String getTag() {
35
		return tag;
36
		return tag;
36
	}
37
	}
37
 
38
 
38
	public void setTag(String tag) {
39
	public void setTag(String tag) {
39
		this.tag = tag;
40
		this.tag = tag;
40
	}
41
	}
-
 
42
	
-
 
43
	public void setMotsClesProtocole(String motsClesProtocole) {
-
 
44
		this.motsClesProtocoles = motsClesProtocole;
-
 
45
	}
-
 
46
	
-
 
47
	public String getMotsClesProtocole() {
-
 
48
		return motsClesProtocoles;
-
 
49
	}
41
 
50
 
42
}
51
}