Phase III

-   Added:
    -   AccountInterface
    -   CheckingAccount
    -   SavingsAccount
-   Converted Account to abstract class
-   All instance variables are validated via exception handling
This commit is contained in:
ds.731
2025-01-02 15:48:07 -06:00
parent 65963450ab
commit 4973d45198
15 changed files with 535 additions and 239 deletions

21
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,21 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Current File",
"request": "launch",
"mainClass": "${file}"
},
{
"type": "java",
"name": "BankAcctApp",
"request": "launch",
"mainClass": "bankAcctApp.BankAcctApp",
"projectName": "Bank Account App_b3cd1e26"
}
]
}