Subversion Repositories eFlore/Applications.del

Rev

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

Rev 690 Rev 882
Line 1... Line 1...
1
package org.tela_botanica.del.client.modeles;
1
package org.tela_botanica.del.client.modeles;
Line 2... Line 2...
2
 
2
 
Line 3... Line 3...
3
public class Contributeur {
3
public class Contributeur {
Line 4... Line 4...
4
	
4
	
-
 
5
	private String id, nom, prenom, adresseEmail;
5
	private String nom, prenom, adresseEmail;
6
	
6
	
7
	public Contributeur(String id, String nom, String prenom, String adresseEmail) {
7
	public Contributeur(String nom, String prenom, String adresseEmail) {
8
		this.id = id;
8
		this.nom = nom;
9
		this.nom = nom;
Line 35... Line 36...
35
	}
36
	}
Line 36... Line 37...
36
	
37
	
37
	public String getNomComplet() {
38
	public String getNomComplet() {
38
		return this.prenom + " " + this.nom;
39
		return this.prenom + " " + this.nom;
-
 
40
	}
-
 
41
	
-
 
42
	public void setId(String id) {
-
 
43
		this.id = id;
-
 
44
	}
-
 
45
 
-
 
46
	public String getId() {
-
 
47
		return id;
39
	}
48
	}