Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 89 Rev 252
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 idEntite=null;
15
	private String idParent=null;
15
	private String idParent=null;
-
 
16
	private String lat=null;
-
 
17
	private String lon=null;
16
	
18
	
17
	
19
	
18
 
20
 
19
	
21
	
20
	public EntiteGeographiqueObservation() {
22
	public EntiteGeographiqueObservation() {
21
	}
23
	}
22
 
24
 
23
	
25
	
24
	/**
26
	/**
25
	 * @param commune
27
	 * @param commune
26
	 * @param departement
28
	 * @param departement
27
	 */
29
	 */
28
	
30
	
29
	public EntiteGeographiqueObservation(String entite, String idEntite, String idParent) {
31
	public EntiteGeographiqueObservation(String entite, String idEntite, String idParent) {
30
		
32
		
31
		this.entite = entite;
33
		this.entite = entite;
32
		this.idEntite = idEntite;
34
		this.idEntite = idEntite;
33
		this.idParent = idParent;
35
		this.idParent = idParent;
34
 
36
 
35
		
37
		
36
	}
38
	}
-
 
39
	
-
 
40
	public void setLat(String la) {
-
 
41
		lat = la;
-
 
42
	}
-
 
43
	
-
 
44
	public void setLon(String lo) {
-
 
45
		lon = lo;
-
 
46
	}
-
 
47
 
-
 
48
	public String getLat() {
-
 
49
		return lat;
37
 
50
	}
-
 
51
	
-
 
52
	public String getLon() {
-
 
53
		return lon;
38
 
54
	}
39
 
55
 
40
	public String getIdLocation() {
56
	public String getIdLocation() {
41
		return entite;
57
		return entite;
42
	}
58
	}
43
 
59
 
44
 
60
 
45
	public String getLocation() {
61
	public String getLocation() {
46
		return idEntite;
62
		return idEntite;
47
	}
63
	}
48
 
64
 
49
 
65
 
50
	public String getLieuDit() {
66
	public String getLieuDit() {
51
		return idParent;
67
		return idParent;
52
	}
68
	}
53
 
69
 
54
 
70
 
55
	
71
	
56
 
72
 
57
}
73
}