Subversion Repositories eFlore/Applications.cel

Rev

Rev 382 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 382 Rev 963
Line 1... Line 1...
1
package org.tela_botanica.client.modeles;
1
package org.tela_botanica.client.modeles;
Line 2... Line 2...
2
 
2
 
Line 3... Line -...
3
 
-
 
-
 
3
 
4
public class Observation {
4
public class Observation {
5
 
5
 
6
 
6
	private String id=null;
7
	private String transmis=null;
7
	private String transmis=null;
8
	private String nomSaisi=null;
8
	private String nomSaisi=null;
Line 18... Line 18...
18
	private String milieu=null;
18
	private String milieu=null;
19
	private String commentaire=null;
19
	private String commentaire=null;
20
	private String date=null;
20
	private String date=null;
21
	private String numeroOrdre=null;
21
	private String numeroOrdre=null;
22
	private String motsCles=null;
22
	private String motsCles=null;
23
	private String coordonneeX=null;
23
	private String latitude=null;
24
	private String coordonneeY=null;
24
	private String longitude=null;
25
	private String referentielGeo=null;
25
	private String referentielGeo=null;
Line 26... Line 26...
26
 
26
 
27
	public Observation() {
27
	public Observation() {
Line 203... Line 203...
203
	
203
	
204
	public String getMotsCles() {
204
	public String getMotsCles() {
205
		return motsCles;
205
		return motsCles;
Line 206... Line 206...
206
	}
206
	}
207
	
207
	
208
	public String getCoordonneeX() {
208
	public String getLatitude() {
Line 209... Line 209...
209
		return this.coordonneeX ;
209
		return this.latitude ;
210
	}
210
	}
211
	
211
	
Line 212... Line 212...
212
	public String getCoordonneeY() {
212
	public String getLongitude() {
213
		return this.coordonneeY ;
213
		return this.longitude ;
214
	}
214
	}
Line -... Line 215...
-
 
215
	
-
 
216
	public String getReferentielGeo() {
-
 
217
		return this.referentielGeo ;
-
 
218
	}
215
	
219
	
216
	public String getReferentielGeo() {
220
	public String getId() {
217
		return this.referentielGeo ;
221
		return this.id;
Line 218... Line 222...
218
	}
222
	}
219
	
223
	
220
	public void setMotsCles(String motsCles) {
224
	public void setMotsCles(String motsCles) {
Line 221... Line 225...
221
		this.motsCles = motsCles;
225
		this.motsCles = motsCles;
222
	}
226
	}
223
	
227
	
Line 224... Line 228...
224
	public void setNumeroOrdre(String numeroOrdre) {
228
	public void setNumeroOrdre(String numeroOrdre) {
225
		this.numeroOrdre = numeroOrdre;
229
		this.numeroOrdre = numeroOrdre;
226
	}
230
	}
Line 227... Line 231...
227
	
231
	
228
	public void setCoordonneeX(String x) {
232
	public void setCoordonneeX(String latitude) {
229
		this.coordonneeX = x;
233
		this.latitude = latitude;
Line -... Line 234...
-
 
234
	}
-
 
235
	
-
 
236
	public void setCoordonneeY(String longitude) {
-
 
237
		this.longitude = longitude;
-
 
238
	}
230
	}
239