Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1284 Rev 1292
Line 251... Line 251...
251
 
251
 
252
	public String getLongitude() {
252
	public String getLongitude() {
253
		return renvoyerValeurCorrecte("longitude");
253
		return renvoyerValeurCorrecte("longitude");
254
	}
254
	}
255
	public void setLongitude(String longitude) {
255
	public void setLongitude(String longitude) {
256
		if (longitude != null) {
256
		if (longitude != null)	{
257
			longitude = longitude.replace(".", ",");
257
			longitude = longitude.replace(".", ",");
258
		}
258
		}
259
		this.set("longitude", longitude);
259
		this.set("longitude", longitude);
Line 263... Line 263...
263
	public String getTelephone() {
263
	public String getTelephone() {
264
		return renvoyerValeurCorrecte("truk_telephone");
264
		return renvoyerValeurCorrecte("truk_telephone");
265
	}
265
	}
266
	public void setTelephone(String tel) {
266
	public void setTelephone(String tel) {
267
		this.set("truk_telephone", tel);
267
		this.set("truk_telephone", tel);
268
	}
268
	}	
269
	
269
 
270
	// TELEPHONE FIXE
270
	// TELEPHONE FIXE
271
	public String getTelephoneFixe() {
271
	public String getTelephoneFixe() {
272
		return getInfoDenormaliseParType(renvoyerValeurCorrecte("truk_telephone"), Personne.TELEPHONE_FIXE);
272
		return getInfoDenormaliseParType(renvoyerValeurCorrecte("truk_telephone"), Personne.TELEPHONE_FIXE);
273
	}
273
	}
274
	public void setTelephoneFixe(String fixe) {
274
	public void setTelephoneFixe(String fixe) {
Line 280... Line 280...
280
		return getInfoDenormaliseParType(renvoyerValeurCorrecte("truk_telephone"), Personne.TELEPHONE_FAX);
280
		return getInfoDenormaliseParType(renvoyerValeurCorrecte("truk_telephone"), Personne.TELEPHONE_FAX);
281
	}
281
	}
282
	public void setFax(String fax) {
282
	public void setFax(String fax) {
283
		modifierChaineDenormaliseParType("truk_telephone", Personne.TELEPHONE_FAX, fax);
283
		modifierChaineDenormaliseParType("truk_telephone", Personne.TELEPHONE_FAX, fax);
284
	}
284
	}
-
 
285
 
Line 285... Line 286...
285
	
286
	
286
	// COURRIEL
287
	// COURRIEL
287
	public String getCourriel() {
288
	public String getCourriel() {
288
		return renvoyerValeurCorrecte("courriel");
289
		return renvoyerValeurCorrecte("courriel");