Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1739 Rev 1760
Line 36... Line 36...
36
	public void setAdresseEmail(String adresseEmail) {
36
	public void setAdresseEmail(String adresseEmail) {
37
		this.adresseEmail = adresseEmail;
37
		this.adresseEmail = adresseEmail;
38
	}
38
	}
Line 39... Line 39...
39
	
39
	
-
 
40
	public String getNomComplet() {
-
 
41
		String retour;
-
 
42
		if ((this.prenom == null || this.prenom.equals("")) && (this.nom == null || this.nom.equals(""))) {
-
 
43
			retour = ""; // évite de retourner " "
40
	public String getNomComplet() {
44
		} else {
-
 
45
			retour = this.prenom + " " + this.nom;
-
 
46
		}
41
		return this.prenom + " " + this.nom;
47
		return retour;
Line 42... Line 48...
42
	}
48
	}
43
	
49
	
44
	public void setId(String id) {
50
	public void setId(String id) {