-
Notifications
You must be signed in to change notification settings - Fork 1
/
Banque.java
81 lines (62 loc) · 1.92 KB
/
Banque.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
import java.util.*;
public class Banque {
private ArrayList<Compte> listeComptes;
private String adresseAgence;
private String nomDirecteur;
public Banque(String adresseAgence, String nomDirecteur) {
this.adresseAgence = adresseAgence;
this.nomDirecteur = nomDirecteur;
listeComptes = new ArrayList<Compte>();
this.listeComptes = new ArrayList<Compte>();
}
/*public void createCompte(String nom){
listeComptes.add(new Compte(nom));
}
public void createCompte(String nom, int numero){
listeComptes.add(new Compte(nom, numero));
}*/
public boolean debiter(int somme, Compte compte) {
return compte.debiter(somme);
}
public void crediter(int somme, Compte compte) {
compte.crediter(somme);
}
/*public void createCompte(String nom, int numero, int solde, int decouvertMax, int debitMax){
listeComptes.add(new Compte(nom, numero, solde, decouvertMax, debitMax));
}*/
public String toString() {
String message = "Banque appartenant a "+nomDirecteur+
"\n adresse a : "+adresseAgence+
"\n\n Liste des comptes : \n";
for (Compte compte : listeComptes) {
message += "\n" + compte.toString();
}
return message;
}
public ArrayList<Compte> getListeComptes() {
return listeComptes;
}
public void setListeComptes(ArrayList<Compte> listeComptes) {
this.listeComptes = listeComptes;
}
public String getAdresseAgence() {
return adresseAgence;
}
public void setAdresseAgence(String adresseAgence) {
this.adresseAgence = adresseAgence;
}
public String getNomDirecteur() {
return nomDirecteur;
}
public void setNomDirecteur(String nomDirecteur) {
this.nomDirecteur = nomDirecteur;
}
public Compte trouverElement (Compte element){
if(listeComptes.contains(element)){
System.out.println("LISTE CONTIENT L'ELEMENT RECHERCHE!");
return listeComptes.get(listeComptes.indexOf(element));
}
else
return null;
}
}