Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

(New Account class) An Account class was specified in Programming Exercise 9.7. Design a new Account class as follows: Add a new data field name

image text in transcribed

image text in transcribed

(New Account class) An Account class was specified in Programming Exercise 9.7. Design a new Account class as follows: Add a new data field name of the String type to store the name of the customer. Add a new constructor that constructs an account with the specified name, id, and balance Add a new data field named transactions whose type is ArrayList that stores the transaction for the accounts. Each transaction is an instance of the Transaction class. The Transaction class is defined as shown in Figure 11.6. The getter and setter methods for these data fields are provided in the class, but omitted in the UML diagram for brevity. Transaction -date: java.util.Date -type: char The date of this transaction. The type of the transaction, such as 'W' for withdrawal, 'D for deposit The amount of the transaction. The new balance after this transaction. The description of this transaction. -amount: double -balance: double -description: String +Transaction(type: char, amount: double, balance: double, description: String) Construct a Transaction with the specified date, type, balance, and description The Transaction class describes a transaction for a bank account. Modify the withdraw and deposit methods to add a transaction to the transactions array list. All other properties and methods are the same as in Programming Exercise 9.7

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Formal SQL Tuning For Oracle Databases Practical Efficiency Efficient Practice

Authors: Leonid Nossov ,Hanno Ernst ,Victor Chupis

1st Edition

3662570564, 978-3662570562

More Books

Students also viewed these Databases questions

Question

Complexity of linear search is O ( n ) . Your answer: True False

Answered: 1 week ago