Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 14 Rev 389
Line 13... Line 13...
13
public class ReferentielNom {
13
public class ReferentielNom {
Line 14... Line 14...
14
 
14
 
15
 
15
 
-
 
16
	private String nom=null;
Line 16... Line 17...
16
	private String nom=null;
17
	private String numeroNom=null;
-
 
18
	private String statut=null;
17
	private String numeroNom=null;
19
	
Line 18... Line 20...
18
	
20
	
19
	
21
	public ReferentielNom() {
20
	public ReferentielNom() {
22
		
-
 
23
	}
21
	}
24
 
22
 
25
	
Line 23... Line 26...
23
	
26
	/**
Line 24... Line 27...
24
	/**
27
	 * @param nom
25
	 * @param nom
28
	 * @param numeroNom
-
 
29
	 * @param statut
Line 26... Line 30...
26
	 * @param numeroNom
30
	 * 
Line 27... Line -...
27
	 * 
-
 
28
	 */
31
	 */
29
	
32
	
30
	public ReferentielNom(String nom, String numeroNom) {
33
	public ReferentielNom(String nom, String numeroNom, String statut) {
Line 31... Line 34...
31
		
34
		
32
		this.nom = nom;
35
		this.nom = nom;
33
		this.numeroNom = numeroNom;
36
		this.numeroNom = numeroNom;
Line -... Line 37...
-
 
37
		this.statut = statut;
-
 
38
 
-
 
39
		
Line 34... Line 40...
34
 
40
	}