Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 12 Rev 989
1
package org.tela_botanica.client.modeles;
1
package org.tela_botanica.client.modeles.objets;
2
 
2
 
3
/**
3
/**
4
 * 
4
 * 
5
 * Classe representant un element du referentiel commune ou localite
5
 * Classe representant un element du referentiel commune ou localite
6
 * 
6
 * 
7
 */
7
 */
8
 
8
 
9
public class ReferentielCommune {
9
public class ReferentielCommune {
10
 
10
 
11
 
11
 
12
	private String commune=null;
12
	private String commune=null;
13
	private String departement=null;
13
	private String departement=null;
14
	
14
	
15
	
15
	
16
	public ReferentielCommune() {
16
	public ReferentielCommune() {
17
	}
17
	}
18
 
18
 
19
	
19
	
20
	/**
20
	/**
21
	 * @param commune
21
	 * @param commune
22
	 * @param departement
22
	 * @param departement
23
	 */
23
	 */
24
	
24
	
25
	public ReferentielCommune(String commune, String departement) {
25
	public ReferentielCommune(String commune, String departement) {
26
		
26
		
27
		this.commune = commune;
27
		this.commune = commune;
28
		this.departement = departement;
28
		this.departement = departement;
29
 
29
 
30
		
30
		
31
	}
31
	}
32
 
32
 
33
 
33
 
34
 
34
 
35
	public String getCommune() {
35
	public String getCommune() {
36
		return commune;
36
		return commune;
37
	}
37
	}
38
 
38
 
39
 
39
 
40
	public String getDepartement() {
40
	public String getDepartement() {
41
		return departement;
41
		return departement;
42
	}
42
	}
43
 
43
 
44
 
44
 
45
	
45
	
46
 
46
 
47
}
47
}