Subversion Repositories eFlore/Applications.del

Rev

Rev 534 | Rev 1220 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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