Merge pull request #1 from Klagarge/Commment-checking

finish
This commit is contained in:
Rémi Heredero 2022-05-05 16:26:59 +02:00 committed by GitHub
commit 83015bb9ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,14 +1,14 @@
package bank;
/**
* Create a bank account with specification :
* -
* Create a bank account with specification : compte courant
* - you can set a minimum Balance
*/
public class Checking extends BankAccount{
private double minBalance;
/**
*
* Create a new account checking with all parameters
* @param owner
* @param amount
* @param minBalance
@ -32,7 +32,7 @@ public class Checking extends BankAccount{
}
/**
*
* Set the minimum Balance
* @param minBalance
*/
protected void setMinBalance(double minBalance) {
@ -44,15 +44,16 @@ public class Checking extends BankAccount{
}
/**
*
* @return
* Get the minimum balance
* @return the minimum balance
*/
public double getMinBalance() {
return minBalance;
}
/**
*
* Specification : you can withdraw an amount to a minimum balance
*/
@Override
public boolean withdraw(double amount){