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...

1 answer below »
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 consoleb. 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 consolec. 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 consoled. 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
Answered Same DayJun 28, 2021

Answer To: Design and implement Java program as follows:(1) There will be a Book Java class with following...

Kshitij answered on Jun 29 2021
134 Votes
jun29_21/Book.java
jun29_21/Book.java
/*   Created by IntelliJ IDEA.
 *   Author: Kshitij Varshney (kshitijvarshne1)
 *   Date: 28-Jun-21
 *   Ti
me: 10:33 PM
 *   File: Book.java
 */
package June.jun29_21;
public class Book {
    private int id;
    public String title;
    public int price;
    public Book(int id, String title, int price) {
        this.id = id;
        this.title = title;
        this.price = price;
    }
    public String getTitle() {
        return title;
    }
    public void setTitle(String title) {
        this.title = title;
    }
    public int getPrice() {
        return price;
    }
    public void setPrice(int price) {
        this.price = price;
    }
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    @Override
    public String toString() {
        return "Book{" +
                "id=" + id +
                ", title='" + title + '\'' +
                ", price=" + price +
                '}';
    }
}
jun29_21/Inventory.java
jun29_21/Inventory.java
/*   Created by IntelliJ IDEA.
 *   Author: Kshitij Varshney (kshitijvarshne1)
 *   Date: 28-Jun-21
 *   Time: 10:35 PM
 *   File: Inventory.java
 */
package June.jun29_21;
import java.util.ArrayList;
public class Inventory {
    ArrayList invList;
    public Inventory() {
        invList = new ArrayList<>();
    }
    public void add(Book book) {
        boolean check = false;...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here