Subversion Repositories eFlore/Applications.cel

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
65 david 1
package org.tela_botanica.client.modeles;
2
 
3
/**
4
 *
5
 * Classe representant une entite geographique (localite, commune, lieu dit) presente dans la liste des observations
6
 *
7
 */
8
 
9
public class EntiteGeographiqueObservation {
10
 
11
 
12
 
13
	private String entite=null;
14
	private String parent=null;
15
 
16
 
17
	public EntiteGeographiqueObservation() {
18
	}
19
 
20
 
21
	/**
22
	 * @param commune
23
	 * @param departement
24
	 */
25
 
26
	public EntiteGeographiqueObservation(String entite, String parent) {
27
 
28
		this.entite = entite;
29
		this.parent = parent;
30
 
31
 
32
	}
33
 
34
 
35
 
36
	public String getEntite() {
37
		return entite;
38
	}
39
 
40
 
41
	public String getParent() {
42
		return parent;
43
	}
44
 
45
 
46
 
47
 
48
}