Subversion Repositories eFlore/Applications.cel

Rev

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

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