Subversion Repositories eFlore/Applications.cel

Rev

Rev 989 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 989 Rev 2553
Line 6... Line 6...
6
 * 
6
 * 
7
 */
7
 */
Line 8... Line 8...
8
 
8
 
Line 9... Line -...
9
public class EntiteGeographiqueObservation {
-
 
10
 
-
 
11
 
9
public class EntiteGeographiqueObservation {
12
	
10
 
13
	private String idZoneGeo=null;
11
	private String idZoneGeo=null;
14
	private String zoneGeo=null;
12
	private String zoneGeo=null;
15
	private String lieuDit=null;
13
	private String lieuDit=null;
16
	private String station=null;
14
	private String station=null;
17
	private String lat=null;
-
 
18
	private String lon=null;
-
 
-
 
15
	private String lat=null;
Line 19... Line -...
19
	
-
 
20
	
16
	private String lon=null;
21
 
17
	private int zoom = 0; // si zoom <= 0, on l'ignore lors du rafraîchissement
Line 22... Line -...
22
	
-
 
23
	public EntiteGeographiqueObservation() {
18
 
24
	}
19
	public EntiteGeographiqueObservation() {
25
 
20
	}
26
	
21
 
27
	/**
22
	/**
-
 
23
	 * @param zoneGeo
-
 
24
	 * @param departement
-
 
25
	 */
-
 
26
 
-
 
27
	public EntiteGeographiqueObservation(String idZoneGeo, String zoneGeo, String lieuDit, String station, int zoom) {
28
	 * @param zoneGeo
28
		this(idZoneGeo, zoneGeo, lieuDit, station);
29
	 * @param departement
-
 
30
	 */
29
		this.zoom = zoom;
31
	
30
	}
32
	public EntiteGeographiqueObservation(String idZoneGeo, String zoneGeo, String lieuDit, String station) {
31
 
33
		
32
	public EntiteGeographiqueObservation(String idZoneGeo, String zoneGeo, String lieuDit, String station) {
34
		this.idZoneGeo = idZoneGeo;
-
 
35
		this.zoneGeo = zoneGeo;
33
		this.idZoneGeo = idZoneGeo;
36
		this.lieuDit = lieuDit;
34
		this.zoneGeo = zoneGeo;
37
		this.station = station;
35
		this.lieuDit = lieuDit;
38
	
36
		this.station = station;
39
	}
37
	}
40
	
38
 
41
	public void setLat(String la) {
39
	public void setLat(String la) {
42
		lat = la;
40
		lat = la;
43
	}
41
	}
Line -... Line 42...
-
 
42
 
-
 
43
	public void setLon(String lo) {
-
 
44
		lon = lo;
-
 
45
	}
44
	
46
 
45
	public void setLon(String lo) {
47
	public void setZoom(int zoom) {
46
		lon = lo;
48
		this.zoom = zoom;
Line 47... Line 49...
47
	}
49
	}
Line 69... Line 71...
69
	}
71
	}
Line 70... Line 72...
70
	
72
	
71
	public String getStation() {
73
	public String getStation() {
72
		return station;
74
		return station;
-
 
75
	}
-
 
76
 
-
 
77
	public int getZoom() {
-
 
78
		return zoom;
73
	}
79
	}