Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 14 Rev 389
1
package org.tela_botanica.client.modeles;
1
package org.tela_botanica.client.modeles;
2
 
2
 
3
 
3
 
4
 
4
 
5
 
5
 
6
 
6
 
7
/**
7
/**
8
 * 
8
 * 
9
 * Classe representant un element du referentiel de nom
9
 * Classe representant un element du referentiel de nom
10
 * 
10
 * 
11
 */
11
 */
12
 
12
 
13
public class ReferentielNom {
13
public class ReferentielNom {
14
 
14
 
15
 
15
 
16
	private String nom=null;
16
	private String nom=null;
17
	private String numeroNom=null;
17
	private String numeroNom=null;
-
 
18
	private String statut=null;
18
	
19
	
19
	
20
	
20
	public ReferentielNom() {
21
	public ReferentielNom() {
-
 
22
		
21
	}
23
	}
22
 
24
 
23
	
25
	
24
	/**
26
	/**
25
	 * @param nom
27
	 * @param nom
26
	 * @param numeroNom
28
	 * @param numeroNom
-
 
29
	 * @param statut
27
	 * 
30
	 * 
28
	 */
31
	 */
29
	
32
	
30
	public ReferentielNom(String nom, String numeroNom) {
33
	public ReferentielNom(String nom, String numeroNom, String statut) {
31
		
34
		
32
		this.nom = nom;
35
		this.nom = nom;
33
		this.numeroNom = numeroNom;
36
		this.numeroNom = numeroNom;
-
 
37
		this.statut = statut;
34
 
38
 
35
		
39
		
36
	}
40
	}
37
 
41
 
38
 
-
 
39
 
42
 
40
	public String getNom() {
43
	public String getNom() {
41
		return nom;
44
		return nom;
42
	}
45
	}
43
 
46
 
44
 
47
 
45
	public String getNumeroNom() {
48
	public String getNumeroNom() {
46
		return numeroNom;
49
		return numeroNom;
47
	}
50
	}
-
 
51
 
-
 
52
	public String getStatut() {
-
 
53
		return statut;
48
 
54
	}
49
 
55
 
50
	
56
	
51
            
57
            
52
}	  
58
}	  
53
 
59
 
54
 
60