Subversion Repositories eFlore/Archives.cel-v2

Rev

Details | Last modification | View Log | RSS feed

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