Merge pull request #3 from Klagarge/comments-on-Checking

finish comments on checking
This commit is contained in:
Rémi Heredero 2022-05-15 18:12:37 +02:00 committed by GitHub
commit 9c0661f3c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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