Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Implement the class and methods according to the UML and specifications below. Part 1 - Create Product.java and ProductTest.java The Product class models an individual

image text in transcribed

Implement the class and methods according to the UML and specifications below.

Part 1 - Create Product.java and ProductTest.java

The Product class models an individual item type in a vending machine. Each product has a name, cost. and price. Note that cost is the cost of the product to the vending machine company. Price is the price that the vending machine will charge the customer. Violet has said that she is unwilling to deal with anything but quarters, dollar bills, and debit cards so all prices are kept divisible by 25 cents. Costs to the vending machine company can be any penny value. All of the get methods perform the expected operation.

Data

Note: cost and price are both integers. All money in the vending machine is represented as cents to enable simpler math and eliminate rounding issues.

ROUND_PRICE: int - the value in cents to which all prices will be rounded

name: String - the name of the product type

cost: int

price: int

Product()

The default constructor will create an instance of a product with a name of "Generic", a cost of ROUND_PRICE = 25 cents and a price of twice the ROUND_PRICE.

Product(String name, int cost, int price) throws IllegalArgumentException

This constructor takes the name, cost, and price as parameters and sets the instance variables appropriately. Null string names or negative cost or price should throw an IllegalArgumentException. Prices should be rounded to the next ROUND_PRICE cents above the amount given if the amount given if not already divisible by ROUND_PRICE. Note: if the price given is not greater than the cost, the price should be the next ROUND_PRICE-divisible-value that is greater than the cost.

toString()

The toString() method will return a String of the instance variables of the class exactly as shown below. Assuming a name of "M&Ms", cost of $1.02, and a price of $1.25, toString() would return:

Product: M&Ms Cost: 1.02 Price: 1.25.

Note: the cost and price are kept in cents so the toString() method will need to transform the values into the right format.

Part 2 - Create Slot.java and SlotTest.java

The Slot class models a slot in the vending machine. Slots are loaded from the rear, and purchases are removed from the front. This ensures that the items that have been in the machine the longest are sold before newly added items.

Data

SLOT_SIZE: int = 10 - the maximum number of products that a slot in the vending machine can hold.

products: ArrayList - models the actual products that are in the slot. Removing the one at the front models buying one of the products in the slot and all of the others are moved forward similar to an actual vending machine.

Slot()

The Slot() constructor creates an empty array list of products.

Slot(Product product)

This constructor creates a new slot that is filled with SLOT_SIZE of product.

load(Product product)

This method loads the slot with however many new products are required to make sure it is full and returns the number of products it took to fill the slot.

load(Product product, int count)

This method loads the slot with up to count new products in an attempt to fill the slot and returns the number of products it used.

nextProduct()

This method returns a reference to the next product available for purchase. If the slot is empty this method will return null.

buyOne()

This method simulates the purchase of one item from the perspective of the slot. That means no money is dealt with here, rather the slot is checked to make sure there is product to buy and then one product is removed from the front of the ArrayList modeling the slot. If a product is successfully removed from the slot, it is returned, otherwise null is returned.

toString()

The toString() method returns a String exactly like the one below for a slot with 10 M&M products. Items should start with the front slot and end with the rear slot.

SlotCount: 10 of Product: M&Ms Cost: 1.02 Price: 1.25. Product: M&Ms Cost: 1.02 Price: 1.25. Product: M&Ms Cost: 1.02 Price: 1.25. Product: M&Ms Cost: 1.02 Price: 1.25. Product: M&Ms Cost: 1.02 Price: 1.25. Product: M&Ms Cost: 1.02 Price: 1.25. Product: M&Ms Cost: 1.02 Price: 1.25. Product: M&Ms Cost: 1.02 Price: 1.25. Product: M&Ms Cost: 1.02 Price: 1.25. Product: M&Ms Cost: 1.02 Price: 1.25.

Hint

Hint: Dont forget to make use of other toString() methods.

Part 3 - Create VendingMachine.java and test it.

The VendingMachine class is a simple vending machine. Exact change is required so it is assumed if someone is buying something they have inserted the right amount of money or have used a debit card. The get methods return the appropriate instance variable values.

Data

DEFAULT_SIZE: int = 15 the default size for a VendingMachine, used primarily by the default constructor

totalProfit: int this models the total profit for all of the VendingMachines together. It is the sum of the price of every product bought from all of the machines minus the sum of the cost of all the products ever put in all of the machines. Note that it is protected in the UML diagram so it is accessible to classes that inherit from this class.

machineProfit: int this models the long term profit for this particular machine. It is the sum of the price of every product bought from this machine minus the sum of the cost of all the products ever put in this machine. Note that it is protected in the UML diagram so it is accessible to classes that inherit from this class.

slots: Slot[] this array models the array of slots in the VendingMachine.

VendingMachine()

The default constructor creates a VendingMachine with DEFAULT_SIZE empty Slots.

VendingMachine(int size)

Creates a VendingMachine with the indicated number of empty Slots.

VendingMachine(int size, Product product)

Creates a VendingMachine with size Slots each full of product.

load()

Loads an empty or partially empty VendingMachine with a Generic product (i.e. the product obtained using the default constructor of the Product class.) Makes appropriate adjustments to machineProfit and totalProfit by subtracting costs from profit values.

load(int slotNum, int count, Product product)throws IllegalArgumentException

Loads the slot indicated by slotNum with product until it is full or until count is reached. Makes appropriate adjustments to machineProfit and totalProfit by subtracting costs from profit values. Throws an IllegalArgumentException if the slotNum is out of bounds, the count is less than or equal to zero, or if the product is null.

nextProduct(int slotNum)throws IllegalArgumentException

Returns a reference to the next available product in the indicated slot or null if the slot is empty. Throws an IllegalArgumentException if the slotNum is out of bounds.

buy(int slotNum)throws IllegalArgumentException

Models buying one item from the slot number indicated. Makes appropriate adjustments to machineProfit and totalProfit by adding the price to the profit values. Throws an IllegalArgumentException if the slotNum is out of bounds. Returns false if there is no product to buy.

resetTotalProfit()

This method resets the totalProfit static instance variable to zero. This is useful when testing to make sure that different method tests start out in a known state for the static variable so the final value can be computed without knowing the order of the test runs.

toString()

Returns a String representing the VendingMachine, each slot, the machineProfit and totalProfit exactly as shown below for a 2-slot VendingMachine filled with Generic product where nothing has been bought (so the profits are negative).

Vending Machine SlotCount: 10 of Product: Generic Cost: 0.25 Price: 0.50. Product: Generic Cost: 0.25 Price: 0.50. Product: Generic Cost: 0.25 Price: 0.50. Product: Generic Cost: 0.25 Price: 0.50. Product: Generic Cost: 0.25 Price: 0.50. Product: Generic Cost: 0.25 Price: 0.50. Product: Generic Cost: 0.25 Price: 0.50. Product: Generic Cost: 0.25 Price: 0.50. Product: Generic Cost: 0.25 Price: 0.50. Product: Generic Cost: 0.25 Price: 0.50. SlotCount: 10 of Product: Generic Cost: 0.25 Price: 0.50. Product: Generic Cost: 0.25 Price: 0.50. Product: Generic Cost: 0.25 Price: 0.50. Product: Generic Cost: 0.25 Price: 0.50. Product: Generic Cost: 0.25 Price: 0.50. Product: Generic Cost: 0.25 Price: 0.50. Product: Generic Cost: 0.25 Price: 0.50. Product: Generic Cost: 0.25 Price: 0.50. Product: Generic Cost: 0.25 Price: 0.50. Product: Generic Cost: 0.25 Price: 0.50. Total Profit: -5.00 Machine Profit: -5.00.

Part 4 - Create DrinkMachine.java and test it.

The drink machine inherits from the general VendingMachine described above. The only additions are a constant for the cooling charge and a different buy method which will affect the profit for the machine and the total profit differently than in the general VendingMachine. DrinkMachines will assess a charge for keeping the drink cold when the drink is purchased. This charge impacts the cost of the product to the vending machine company. It does not impact the price for the customer.

Data

COOLING_CHARGE: int = 10 this models the ten-cent charge assessed to each drink when it is purchased to account for the refrigeration costs of the drink machine.

DrinkMachine()

Performs the same action for the DrinkMachine as VendingMachine().

DrinkMachine(int size, Product product)

Performs the same action for the DrinkMachine as VendingMachine(int size, Product product).

buy(int slotNum) throws IllegalArgumentException

Models buying one item from the slot number indicated. Throws an IllegalArgumentException if the slotNum is out-of-bounds. Makes appropriate adjustments to machineProfit and totalProfit by adding the price

Hint

use a public method) minus the COOLING_CHARGE to the profit values.

Part 5 - Create ChangeMakingMachine.java and test it.

The change-making machine will add the functionality of being able to pay with cash and potentially get change back. The change will just be returned as an integer value in cents, but the amount paid in will be determined by the number of quarters and dollars that are entered.

ChangeMakingMachine()

Performs the same action for the ChangeMakingMachine as VendingMachine()

ChangeMakingMachine(int size)

Performs the same action for the ChangeMakingMachine as VendingMachine(int size).

ChangeMakingMachine(int size, Product product)

Performs the same action for the ChangeMakingMachine as VendingMachine(int size, Product product)

buy(int slotNum, int quarters, int dollars)throws IllegalArgumentException

Models buying one item from the slot number indicated. Throws an IllegalArgumentException if the slotNum is out of bounds or if quarters or dollars are negative. Computes the amount of money put into the machine in quarters and dollars, returning -1 if there is not enough money to buy the product and returning the positive difference or change if there is any. Makes appropriate adjustments to machineProfit and totalProfit by adding the price to the profit values if the buy is successful.

Note

Use a public method to accomplish this.

Part 6 - Create SnackMachine.java and test it.

The snack machine will inherit from the ChangeMakingMachine. The difference is it will have an additional instance variable of an array list of products which will indicate the type of product each slot should contain and its load method will fill each slot completely with the particular product the slot contains, making appropriate adjustments to the profit tallies.

Data

productList: ArrayList contains the list of products for each slot in the SnackMachine. The first position in the productList corresponds to the product in the first slot in the slots array.

SnackMachine(ArrayList pList)

This constructor initializes the productList of the SnackMachine and creates a new snack machine where each slot is full of the product indicated in the matching position in the productList. The size of the snack machine is just the length of the productList.

load()

This load method completely fills each slot in the snack machine with the appropriate product. As a slot is filled, the total cost of the items is subtracted from the profit tallies.

Part 7 - Create Simulator.java and test it.

The simulator will provide a means of simulating a small business of vending machines. The vending machines of the business are stored in an array list. Vending machines can be added to the list using the provided method to simulate the growth of a business. Simulation of the business running and selling product is done by simulating a specific number of products being bought from every slot of every vending machine in the business and returning the totalProfit of all of the vending machines in cents.

Data

vmList: ArrayList models the list of vending machines owned by the company

Simulator(ArrayList vmList)

Instantiates a Simulator

addVM(VendingMachine vm)

Adds the VendingMachine indicated by vm to the end of the list of vending machines owned by the company.

simulate(int pCount)

Simulates buying pCount products from every slot of every VendingMachine owned by the company. Returns the totalProfit of all of the VendingMachines.

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

Readings In Database Systems

Authors: Michael Stonebraker

2nd Edition

0934613656, 9780934613651

More Books

Students also viewed these Databases questions

Question

=+What is your religion? Would you be able to perform the

Answered: 1 week ago

Question

1.what is the significance of Taxonomy ?

Answered: 1 week ago

Question

What are the advantages and disadvantages of leasing ?

Answered: 1 week ago

Question

Name is needed for identifying organisms ?

Answered: 1 week ago

Question

In an Excel Pivot Table, how is a Fact/Measure Column repeated?

Answered: 1 week ago