finish comments on checking

This commit is contained in:
Rémi Heredero 2022-05-15 18:10:24 +02:00
parent 3969ca3ec0
commit 7e8a4d66db
2 changed files with 5 additions and 4 deletions

Binary file not shown.

View File

@ -9,9 +9,9 @@ public class Checking extends BankAccount{
/**
* Create a new account checking with all parameters
* @param owner
* @param amount
* @param minBalance
* @param owner The people who have the bank account
* @param amount The amount on this bank account
* @param minBalance the minimum value the value can go. without blocking a withdraw
*/
protected Checking(String owner, double amount, double minBalance){
if(owner==null){
@ -33,7 +33,7 @@ public class Checking extends BankAccount{
/**
* Set the minimum Balance
* @param minBalance
* @param minBalance The minimum balance you want to set
*/
protected void setMinBalance(double minBalance) {
if(minBalance>0){
@ -43,6 +43,7 @@ public class Checking extends BankAccount{
this.minBalance = minBalance;
}
/**
* Get the minimum balance
* @return the minimum balance