Subversion Repositories eFlore/Applications.cel

Rev

Rev 1332 | 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;
12 david 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;
1332 aurelien 14
	private String codeInsee=null;
12 david 15
 
16
 
17
	public ReferentielCommune() {
18
	}
19
 
20
	/**
21
	 * @param commune
22
	 * @param departement
23
	 */
1332 aurelien 24
	public ReferentielCommune(String commune, String code) {
12 david 25
 
26
		this.commune = commune;
1332 aurelien 27
		if(code.length() == 5) {
28
			codeInsee = code;
29
			departement = code.substring(0,2);
30
		} else {
31
			departement = code;
32
		}
12 david 33
	}
34
 
35
	public String getCommune() {
36
		return commune;
37
	}
38
 
39
 
40
	public String getDepartement() {
41
		return departement;
42
	}
43
 
1332 aurelien 44
	public String getCodeInsee() {
45
		return codeInsee;
46
	}
12 david 47
 
48
}