Subversion Repositories eFlore/Applications.cel

Rev

Rev 989 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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