school/Week-11-final-start/part-1/ItemToPurchase.java
2020-11-11 08:47:37 -05:00

14 lines
299 B
Java

/*
* Following Specs:
* Init in default constructor:
*
* String itemName -- init to none
* int itemPrice - init to 0
* int itemQuanity - init to 0
*
* Public member mothods (mutators & accessors)
* setName() & getName()
* setPrice() & getPrice()
* setQuantity() & getQuantity()
*/