Subversion Repositories eFlore/Applications.cel

Rev

Rev 2553 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
989 aurelien 1
package org.tela_botanica.client.modeles.objets;
65 david 2
 
3
/**
4
 *
965 aurelien 5
 * Classe representant une idZoneGeo geographique (localite, zoneGeo, lieu dit) presente dans la liste des observations
65 david 6
 *
7
 */
8
 
9
public class EntiteGeographiqueObservation {
10
 
965 aurelien 11
	private String idZoneGeo=null;
12
	private String zoneGeo=null;
257 aurelien 13
	private String lieuDit=null;
14
	private String station=null;
252 aurelien 15
	private String lat=null;
16
	private String lon=null;
2558 aurelien 17
	private String pays=null;
2553 mathias 18
	private int zoom = 0; // si zoom <= 0, on l'ignore lors du rafraîchissement
72 david 19
 
65 david 20
	public EntiteGeographiqueObservation() {
21
	}
22
 
23
	/**
965 aurelien 24
	 * @param zoneGeo
65 david 25
	 * @param departement
26
	 */
2553 mathias 27
 
28
	public EntiteGeographiqueObservation(String idZoneGeo, String zoneGeo, String lieuDit, String station, int zoom) {
29
		this(idZoneGeo, zoneGeo, lieuDit, station);
30
		this.zoom = zoom;
31
	}
32
 
965 aurelien 33
	public EntiteGeographiqueObservation(String idZoneGeo, String zoneGeo, String lieuDit, String station) {
34
		this.idZoneGeo = idZoneGeo;
35
		this.zoneGeo = zoneGeo;
257 aurelien 36
		this.lieuDit = lieuDit;
37
		this.station = station;
65 david 38
	}
2558 aurelien 39
 
40
	public void setPays(String pays) {
41
		this.pays = pays;
42
	}
43
 
44
	public String getPays() {
45
		return pays;
46
	}
2553 mathias 47
 
252 aurelien 48
	public void setLat(String la) {
49
		lat = la;
50
	}
2553 mathias 51
 
252 aurelien 52
	public void setLon(String lo) {
53
		lon = lo;
54
	}
65 david 55
 
2553 mathias 56
	public void setZoom(int zoom) {
57
		this.zoom = zoom;
58
	}
59
 
252 aurelien 60
	public String getLat() {
61
		return lat;
62
	}
63
 
64
	public String getLon() {
65
		return lon;
66
	}
65 david 67
 
965 aurelien 68
	public String getIdZoneGeo() {
69
		return idZoneGeo;
65 david 70
	}
71
 
72
 
965 aurelien 73
	public String getZoneGeo() {
74
		return zoneGeo;
65 david 75
	}
76
 
77
 
89 jpm 78
	public String getLieuDit() {
257 aurelien 79
		return lieuDit;
72 david 80
	}
257 aurelien 81
 
82
	public String getStation() {
83
		return station;
84
	}
2553 mathias 85
 
86
	public int getZoom() {
87
		return zoom;
88
	}
65 david 89
}