modification de la méthode ajouter
This commit is contained in:
parent
0f472d5df2
commit
ebe6f29978
@ -36,7 +36,14 @@ private final HashMap<Instrument, Integer> lesLignes = new HashMap<>();
|
||||
* @return true si l'ajout est bon
|
||||
*/
|
||||
public boolean ajouter(Instrument unInstrument, int qte){
|
||||
boolean ajoutOK = lesLignes.put(unInstrument,qte);
|
||||
boolean ajoutOK;
|
||||
int qteDisponible = unInstrument.getQteStock();
|
||||
if (qteDisponible<qte){
|
||||
ajoutOK = false;
|
||||
}else {
|
||||
ajoutOK = true;
|
||||
lesLignes.put(unInstrument,qte);
|
||||
}
|
||||
return ajoutOK;
|
||||
}
|
||||
/**
|
||||
@ -45,8 +52,8 @@ private final HashMap<Instrument, Integer> lesLignes = new HashMap<>();
|
||||
* @return true si la suppression est effectuée
|
||||
*/
|
||||
public boolean supprimer(Instrument unInstrument){
|
||||
boolean suppOK = lesLignes.remove(unInstrument);
|
||||
return suppOK;
|
||||
//lesLignes.remove(unInstrument);
|
||||
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
@ -63,6 +70,11 @@ private final HashMap<Instrument, Integer> lesLignes = new HashMap<>();
|
||||
return dateCom;
|
||||
}
|
||||
|
||||
public HashMap<Instrument, Integer> getLesLignes() {
|
||||
return lesLignes;
|
||||
}
|
||||
|
||||
|
||||
public void setNoCom(int noCom) {
|
||||
this.noCom = noCom;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user