Question: Design and implement Java program as follows: (1) There will be a Book Java class with following attributes: id, title, and price. (2) There will

Design and implement Java program as follows:

(1) There will be a Book Java class with following attributes: id, title, and price.

(2) There will be an Inventory Java class which stores and manages a list of Book objects

(3) Inventory class will provide the following functionality:

a. Add: Prompts user for book data and add to the inventory list. If the book already exists (based on id value), the add request will fail and an error message will be printed to the console

b. Remove. Prompts user for book id, finds the id in the inventory list and removes it. If the book matching the id is not in the inventory, remove request will fail and an error message will be printed to the console

c. Find: Prompts user for book id, finds the id in the inventory list and print all the data for the book (id, title, and price). If the book matching the id is not in the inventory, find request will fail and an error message will be printed to the console

d. Display: Print all the book information for each book to the console

(4) Implement RunInventory class with main method that will provide the menu with selection for each above functionality. Style and Documentation: Make sure your Java program is using the recommended style such as: Javadoc comment up front with your name as author, date, and brief purpose of the program Comments for variables and blocks of code to describe major functionality Meaningful variable names and prompts Class names are written in upper CamelCase Constants are written in All Capitals Use proper spacing and empty lines to make code human readable Capture execution: You should capture and label screen captures associated with compiling your code, and running the a passing and failing scenario for each functionality

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!