summaryrefslogtreecommitdiff
path: root/sem_4/java/eclipse-workspace/Assoc et collec/src/Role.java
blob: f497bfbbd61215894b8dc37b2971faaa0b27e9f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37

public class Role {
	private Boolean redacteur;
private Boolean traducteur;
private Boolean prefacier;
private Boolean illustrateur;
protected Boolean getRedacteur() {
	return redacteur;
}
protected void setRedacteur(Boolean redacteur) {
	this.redacteur = redacteur;
}
protected Boolean getTraducteur() {
	return traducteur;
}
protected void setTraducteur(Boolean traducteur) {
	this.traducteur = traducteur;
}
protected Boolean getPrefacier() {
	return prefacier;
}
protected void setPrefacier(Boolean prefacier) {
	this.prefacier = prefacier;
}
protected Boolean getIllustrateur() {
	return illustrateur;
}
protected void setIllustrateur(Boolean illustrateur) {
	this.illustrateur = illustrateur;
}
public Role ( boolean redac, boolean traducteur, boolean prefacier, boolean illustrateur) {
	this.traducteur= traducteur;
	this.redacteur=redac;
	this.prefacier=prefacier;
	this.illustrateur=illustrateur;
}
}