Subversion Repositories eFlore/Applications.del

Rev

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

Rev 100 Rev 103
1
package org.tela_botanica.del.client.modeles;
1
package org.tela_botanica.del.client.modeles;
2
 
2
 
3
public class Protocol {
3
public class Protocole {
4
	
4
 
-
 
5
	private int id;
-
 
6
 
-
 
7
	private String nom;
-
 
8
	
5
	private int id;
9
	public static String ESTHETISME="Esthetisme";
6
	
10
	
7
	private String name;
11
	public static String IDENTIFICATION_AUTOMATIQUE="Identification automatique";
8
 
12
 
9
	public int getId() {
13
	public int getId() {
10
		return id;
14
		return id;
11
	}
15
	}
12
 
16
 
13
	public void setId(int id) {
17
	public void setId(int id) {
14
		this.id = id;
18
		this.id = id;
15
	}
19
	}
16
 
20
 
17
	public String getName() {
21
	public String getNom() {
18
		return name;
22
		return nom;
19
	}
23
	}
20
 
24
 
21
	public void setName(String name) {
25
	public void setNom(String nom) {
22
		this.name = name;
26
		this.nom = nom;
23
	}
27
	}
24
 
28
 
25
}
29
}