Subversion Repositories eFlore/Applications.del

Rev

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

Rev 534 Rev 814
1
package org.tela_botanica.del.client.modeles;
1
package org.tela_botanica.del.client.modeles;
2
 
-
 
3
 
2
 
4
public class Protocole {
3
public class Protocole {
5
 
4
 
6
	private int id;
5
	private int id;
7
	private String nom;
6
	private String nom;
8
	public static String ESTHETISME = "ESTHETISME";
7
	private String description;
9
	public static String IDENTIFICATION_AUTOMATIQUE = "IDENTIFICATION_AUTOMATIQUE";
-
 
10
 
8
 
11
	public int getId() {
9
	public int getId() {
12
		return id;
10
		return id;
13
	}
11
	}
14
 
12
 
15
	public void setId(int id) {
13
	public void setId(int id) {
16
		this.id = id;
14
		this.id = id;
17
	}
15
	}
18
 
16
 
19
	public String getNom() {
17
	public String getNom() {
20
		return nom;
18
		return nom;
21
	}
19
	}
22
 
20
 
23
	public void setNom(String nom) {
21
	public void setNom(String nom) {
24
		this.nom = nom;
22
		this.nom = nom;
25
	}
23
	}
-
 
24
	
-
 
25
	public String getDescription() {
-
 
26
		return description;
-
 
27
	}
-
 
28
 
-
 
29
	public void setDescription(String description) {
-
 
30
		this.description = description;
-
 
31
	}
26
 
32
 
27
}
33
}