Subversion Repositories eFlore/Applications.cel

Rev

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

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