Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 231 Rev 242
Line 221... Line 221...
221
	public String getTelephone() {
221
	public String getTelephone() {
222
		return renvoyerValeurCorrecte("telephone");
222
		return renvoyerValeurCorrecte("telephone");
223
	}
223
	}
224
	public void setTelephone(String t) {
224
	public void setTelephone(String t) {
225
		// Nous remplaçons le premier numéro de Téléphone FIX de la personne
225
		// Nous remplaçons le premier numéro de Téléphone FIX de la personne
226
		this.setChaineDenormaliseParType("telephone", "FIX", t);
226
		this.modifierChaineDenormaliseParType("telephone", "FIX", t);
227
	}
227
	}
Line 228... Line 228...
228
	
228
	
229
	// FAX
229
	// FAX
230
	public String getFax() {
230
	public String getFax() {
231
		return renvoyerValeurCorrecte("fax");
231
		return renvoyerValeurCorrecte("fax");
232
	}
232
	}
233
	public void setFax(String f) {
233
	public void setFax(String f) {
234
		// Nous remplaçons le numéro de Fax en position 1 (principal)
234
		// Nous remplaçons le numéro de Fax en position 1 (principal)
235
		this.setChaineDenormaliseParPosition("fax", 1, f);
235
		this.modifierChaineDenormaliseParPosition("fax", 1, f);
Line 236... Line 236...
236
	}
236
	}
237
	
237
	
238
	// COURRIEL
238
	// COURRIEL
239
	public String getCourriel() {
239
	public String getCourriel() {
240
		return renvoyerValeurCorrecte("courriel");
240
		return renvoyerValeurCorrecte("courriel");
241
	}
241
	}
242
	public void setCourriel(String c) {
242
	public void setCourriel(String c) {
243
		// Nous remplaçons le courriel en position 1 (principal)
243
		// Nous remplaçons le courriel en position 1 (principal)
Line 244... Line 244...
244
		this.setChaineDenormaliseParPosition("courriel", 1, c);
244
		this.modifierChaineDenormaliseParPosition("courriel", 1, c);
245
	}
245
	}
246
	
246