Question: (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

 (New Account class) An Account class was specified in Programming Exercise

9.7. Design a new Account class as follows: Add a new data

(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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!