-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEtudiant.java
85 lines (65 loc) · 1.87 KB
/
Etudiant.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
80
81
82
83
84
85
public class Etudiant extends Personne {
//Attributs
private String numeroEtudiant;
private String faculte;
//Constructeurs
/**
* constructeur vide
*/
public Etudiant() {}
/**
* constructeur par copie
*/
public Etudiant(Etudiant e) {
super(e);
this.numeroEtudiant = e.getNumeroEtudiant();
this.faculte = e.getFaculte();
}
/**
* initialise l'Etudiant courant
*/
public Etudiant(String unNom, int unAge,
String unNumeroEtudiant, String uneFac) {
super(unNom, unAge);
this.numeroEtudiant = unNumeroEtudiant;
this.faculte = uneFac;
}
//Methodes
/**
* retourne true si l'Etudiant référencé par o a les mêmes
* caractèristiques que l'Etudiant courant
*/
public boolean equals(Object o) {
Etudiant eo = (Etudiant) o;
return super.equals(o) &&
this.numeroEtudiant.equals(eo.getNumeroEtudiant()) &&
this.faculte.equals(eo.getFaculte());
}
/**
* retourne la faculté où étudie l'étudiant courant
*/
public String getFaculte() {
return this.faculte;
}
/**
* retourne le niméro d'étudiant de l'Etudiant courant
*/
public String getNumeroEtudiant() {
return this.numeroEtudiant;
}
/**
* initialise interactivementl'Etudiant courant
*/
public void init() {
super.init();
this.numeroEtudiant = Lire.jString("Entrez un numéro étudiant. ");
this.faculte = Lire.jString("Entrez une faculté. ");
}
/**
* retourne la chaine de caractères représentant l'Etudiant courant
*/
public String toString() {
return super.toString() + "\nNumero Etudiant : " +
this.numeroEtudiant + "\nFaculte : " + this.faculte;
}
}