Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 238 Rev 240
Line 40... Line 40...
40
				this.set(cleObjet, valeur);
40
				this.set(cleObjet, valeur);
41
			}
41
			}
42
		}
42
		}
43
	}
43
	}
Line -... Line 44...
-
 
44
	
44
	
45
	// ID PERSONNE
45
	public String getId() {
46
	public String getId() {
46
		return (String) renvoyerValeurCorrecte("id_personne");
47
		return renvoyerValeurCorrecte("id_personne");
Line -... Line 48...
-
 
48
	}
47
	}
49
	
48
	
50
	// NOM COMPLET
49
	public String getNom()	{
51
	public String getNomComplet() {
Line -... Line 52...
-
 
52
		return renvoyerValeurCorrecte("fmt_nom_complet");
50
		return (String) renvoyerValeurCorrecte("nom");
53
	}
51
	}
54
	
52
	
55
	// NOM
Line -... Line 56...
-
 
56
	public String getNom() {
-
 
57
		return renvoyerValeurCorrecte("nom");
-
 
58
	}
-
 
59
	
-
 
60
	// PRÉNOM
-
 
61
	public String getPrenom() {
-
 
62
		return renvoyerValeurCorrecte("prenom");
-
 
63
	}
-
 
64
	
-
 
65
	// TÉLÉPHONE
-
 
66
	public String getTelephone() {
-
 
67
		return renvoyerValeurCorrecte("truk_telephone");
-
 
68
	}
-
 
69
	public void setTelephone(String t) {
-
 
70
		this.set("truk_telephone", t);
-
 
71
	}
-
 
72
	public void addTelephone(String type, Object valeur) {
-
 
73
		ajouterChaineDenormaliseAvecType("truk_telephone", type, valeur);
-
 
74
	}
-
 
75
	
-
 
76
	// FAX
-
 
77
	public String getFax() {
-
 
78
		return renvoyerValeurCorrecte("truk_fax");
-
 
79
	}
-
 
80
	public void setFax(String f) {
-
 
81
		this.set("truk_fax", f);
-
 
82
	}
-
 
83
	public void addFax(Object valeur) {
53
	public String getPrenom()	{
84
		ajouterChaineDenormalise("truk_fax", valeur);
54
		return (String) renvoyerValeurCorrecte("prenom");
85
	}
-
 
86
	
-
 
87
	// COURRIEL
-
 
88
	public String getCourriel() {
-
 
89
		return renvoyerValeurCorrecte("truk_courriel");
-
 
90
	}
-
 
91
	public void setCourriel(String c) {
-
 
92
		this.set("truk_courriel", c);
-
 
93
	}
-
 
94
	public void addCourriel(String c) {
-
 
95
		ajouterChaineDenormalise("truk_courriel", c);
-
 
96
	}
-
 
97
	
-
 
98
	// SPÉCIALITÉ
-
 
99
	public String getSpecialite() {
-
 
100
		return renvoyerValeurCorrecte("ce_truk_specialite");
55
	}
101
	}
Line 56... Line 102...
56
	
102
	public void setSpecialite(String s) {
57
	public String getNomComplet()	{
103
		// Pas de liste pour l'instant, donc tout passe dans "Autre".
58
		return (String) renvoyerValeurCorrecte("fmt_nom_complet");
104
		setChaineDenormaliseUnique("ce_truk_specialite", "AUTRE", s);