Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 1756 → Rev 1761

/trunk/src/org/tela_botanica/del/client/modeles/Contributeur.java
38,7 → 38,13
}
public String getNomComplet() {
return this.prenom + " " + this.nom;
String retour;
if ((this.prenom == null || this.prenom.equals("")) && (this.nom == null || this.nom.equals(""))) {
retour = ""; // évite de retourner " "
} else {
retour = this.prenom + " " + this.nom;
}
return retour;
}
public void setId(String id) {