Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 1286 Rev 1488
Line 25... Line 25...
25
	private String numeroOrdre=null;
25
	private String numeroOrdre=null;
26
	private String motsCles=null;
26
	private String motsCles=null;
27
	private String latitude=null;
27
	private String latitude=null;
28
	private String longitude=null;
28
	private String longitude=null;
29
	private String referentielGeo=null;
29
	private String referentielGeo=null;
-
 
30
	private String abondance=null;
-
 
31
	private String certitude=null;
Line 30... Line 32...
30
 
32
 
31
	public Observation() {
33
	public Observation() {
Line 100... Line 102...
100
		this.numeroOrdre = Util.getValeurJsonOuVide(observation,"ordre");
102
		this.numeroOrdre = Util.getValeurJsonOuVide(observation,"ordre");
101
		this.id = Util.getValeurJsonOuVide(observation,"id_observation");
103
		this.id = Util.getValeurJsonOuVide(observation,"id_observation");
102
		this.latitude = Util.getValeurJsonOuVide(observation,"latitude");
104
		this.latitude = Util.getValeurJsonOuVide(observation,"latitude");
103
		this.longitude = Util.getValeurJsonOuVide(observation,"longitude");
105
		this.longitude = Util.getValeurJsonOuVide(observation,"longitude");
104
		this.motsCles = Util.getValeurJsonOuVide(observation,"mots_cles");
106
		this.motsCles = Util.getValeurJsonOuVide(observation,"mots_cles");
105
		
-
 
-
 
107
		this.abondance = Util.getValeurJsonOuVide(observation,"abondance");
-
 
108
		this.certitude = Util.getValeurJsonOuVide(observation,"certitude");
106
	}
109
	}
Line 107... Line 110...
107
	
110
	
108
	/**
111
	/**
109
	 * Une observation saisie ou modifiee
112
	 * Une observation saisie ou modifiee
Line 243... Line 246...
243
	
246
	
244
	public String getId() {
247
	public String getId() {
245
		return this.id;
248
		return this.id;
Line -... Line 249...
-
 
249
	}
-
 
250
	
-
 
251
	public String getAbondance() {
-
 
252
		return this.abondance;
-
 
253
	}
-
 
254
	
-
 
255
	public String getCertitude() {
-
 
256
		return this.certitude;
246
	}
257
	}
247
	
258
	
248
	public void setMotsCles(String motsCles) {
259
	public void setMotsCles(String motsCles) {
Line 249... Line 260...
249
		this.motsCles = motsCles;
260
		this.motsCles = motsCles;
Line 263... Line 274...
263
	
274
	
264
	public void setReferentielGeo(String refGeo) {
275
	public void setReferentielGeo(String refGeo) {
265
		this.referentielGeo = refGeo;
276
		this.referentielGeo = refGeo;
Line 266... Line -...
266
	}
-
 
267
 
277
	}
268
 
278
 
269
	public void setId(String id) {
279
	public void setId(String id) {
270
		this.id = id;
280
		this.id = id;
-
 
281
	}
-
 
282
	
-
 
283
	public void setAbondance(String abondance) {
271
	}
284
		this.abondance = abondance;
-
 
285
	}
-
 
286
	
-
 
287
	public void setCertitude(String certitude) {
272
 
288
		this.certitude = certitude;