Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1173 Rev 1193
Line 215... Line 215...
215
	
215
	
216
	public String getLatitude() {
216
	public String getLatitude() {
217
		return renvoyerValeurCorrecte("latitude");
217
		return renvoyerValeurCorrecte("latitude");
218
	}
218
	}
-
 
219
	public void setLatitude(String latitude) {
219
	public void setLatitude(String latitude) {
220
		if (latitude != null)	{
-
 
221
			latitude = latitude.replace(".", ",");
220
		latitude = latitude.replace(".", ",");
222
		}
221
		this.set("latitude", latitude);
223
		this.set("latitude", latitude);
Line 222... Line 224...
222
	}
224
	}
223
 
225
 
224
	public String getLongitude() {
226
	public String getLongitude() {
225
		return renvoyerValeurCorrecte("longitude");
227
		return renvoyerValeurCorrecte("longitude");
-
 
228
	}
226
	}
229
	public void setLongitude(String longitude) {
-
 
230
		if (longitude != null) {
227
	public void setLongitude(String longitude) {
231
			longitude = longitude.replace(".", ",");
228
		longitude = longitude.replace(".", ",");
232
		}
Line 229... Line 233...
229
		this.set("longitude", longitude);
233
		this.set("longitude", longitude);
230
	}
234
	}