Inventory Java Program 23.07.08
I am a Mobile DJ that also buys and sells music and I am trying to come up with an inventory .java program that I can track my inventory of CD’s. I am novice java programmer and I feel this is a little out of my league. Bellow is the guideline that I need this program to follow:
A Product class that holds the item number, the name of the product, the number of units in stock, and the price of each unit.
A Java application that displays the product number, the name of the product, the number of units in stock, the price of each unit, and the value of the inventory (the number of units in stock multiplied by the price of each unit).
The Application needs to be able to handle multiple items. Use an array to store the items. The output should display the information one product at a time, including the item number, the name of the product, the number of units in stock, the price of each unit, and the value of the inventory of that product. In addition, the output should display the value of the entire inventory.
A method to calculate the value of the entire inventory
Another method to sort the array items by the name of the product



