-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPersonne.java
68 lines (52 loc) · 1.05 KB
/
Personne.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
public abstract class Personne {
/**
* Attributs relatifs a l'identite de la personne
* Une personne est affiliee a une {@link Boulangerie}
*/
private String nom;
private int x, y;
/**
* Constructeur
*
* @param n : nom
* @param b : {@link Boulangerie} affiliee
* @param xx : abscisse
* @param yy : ordonnee
*/
public Personne (String n, int xx, int yy) {
nom = n;
x = xx;
y = yy;
}
/**
* Redefinition de la methode standard toString()
*
* @return le nom de l'individu
*/
@Override
public String toString() {
return nom;
}
/**
* Redefinition de la methode standard equals()
*
* @return l'egalite identitaire entre deux individus
*/
@Override
public boolean equals(Object obj) {
if ((this != null) && this.getClass() == obj.getClass()) {
Personne p = (Personne) obj;
return (nom == p.nom) && (x == p.x) && (y == p.y);
}
return false;
}
/**
* Accesseurs
*/
public int getX() {
return x;
}
public int getY() {
return y;
}
}