-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmploye.java
79 lines (59 loc) · 1.27 KB
/
Employe.java
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
public class Employe extends Personne {
/**
* Attribut relatif au salaire d'un employe
* Compteur d'employes
*/
private static int nbEmployes = 0;
private double salaire;
/**
* Constructeur 01
*
* @param n : nom
* @param b : {@link Boulangerie} affiliee
* @param s : salaire
*/
public Employe (String n, double s) {
super(n + nbEmployes, 0, 0);
salaire = s;
}
/**
* Constructeur 02
*
* @param n : nom
* @param b : {@link Boulangerie} affiliee
*/
public Employe (String n) {
this(n, 1500);
}
/**
* Redefinition de la methode standard toString()
*
* @return les caracteristiques de l'employe
*/
@Override
public String toString() {
return "Employe (" + salaire + " euros) : " + super.toString();
}
/**
* Redefinition de la methode standard equals()
*
* @return l'egalite structurelle entre deux employes
*/
@Override
public boolean equals(Object obj) {
if ((this != null) && (this.getClass() == obj.getClass())) {
Employe e = (Employe) obj;
return super.equals(obj) && (salaire == e.salaire);
}
return false;
}
/**
* Accesseur
*/
public double getSalaire() {
return salaire;
}
public static int getNbEmployes() {
return nbEmployes;
}
}