Subversion Repositories eFlore/Applications.cel

Rev

Rev 65 | Go to most recent revision | Details | Compare with Previous | 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;
72 david 14
	private String idEntite=null;
15
	private String idParent=null;
65 david 16
 
17
 
72 david 18
 
19
 
65 david 20
	public EntiteGeographiqueObservation() {
21
	}
22
 
23
 
24
	/**
25
	 * @param commune
26
	 * @param departement
27
	 */
28
 
72 david 29
	public EntiteGeographiqueObservation(String entite, String idEntite, String idParent) {
65 david 30
 
31
		this.entite = entite;
72 david 32
		this.idEntite = idEntite;
33
		this.idParent = idParent;
65 david 34
 
35
 
36
	}
37
 
38
 
39
 
40
	public String getEntite() {
41
		return entite;
42
	}
43
 
44
 
72 david 45
	public String getIdEntite() {
46
		return idEntite;
65 david 47
	}
48
 
49
 
72 david 50
	public String getIdParent() {
51
		return idParent;
52
	}
53
 
54
 
65 david 55
 
56
 
57
}