Subversion Repositories eFlore/Applications.del

Rev

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

Rev 210 Rev 232
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
 
-
 
7
	private String nom;
6
	private String nom;
8
	
-
 
9
	public static String ESTHETISME="Esthetisme";
7
	public static String ESTHETISME = "Esthetisme";
10
	
-
 
11
	public static String IDENTIFICATION_AUTOMATIQUE="Identification automatique";
8
	public static String IDENTIFICATION_AUTOMATIQUE = "Identification automatique";
12
 
9
 
13
	public int getId() {
10
	public int getId() {
14
		return id;
11
		return id;
15
	}
12
	}
16
 
13
 
17
	public void setId(int id) {
14
	public void setId(int id) {
18
		this.id = id;
15
		this.id = id;
19
	}
16
	}
20
 
17
 
21
	public String getNom() {
18
	public String getNom() {
22
		return nom;
19
		return nom;
23
	}
20
	}
24
 
21
 
25
	public void setNom(String nom) {
22
	public void setNom(String nom) {
26
		this.nom = nom;
23
		this.nom = nom;
27
	}
24
	}
28
 
25
 
29
}
26
}