I have six
java source files that together make up a simple store and inventory system I'm working on. It's supposedly to teach me about collections.
I have two interfaces provided for me, StoreInterface and InventoryItemInterface.
I have a class StoreUI (partially created) which is the main arg and main file the user interacts with to do several functions, like add/delete an item to the store inventory, display the entire inventory, etc. I have a SimpleInput class that contains code that helps StoreUI take keyboard input from the user.
I have two classes I'm designing from scratch. One, Store, defines the methods from StoreInterface. The second, InventoryItem, defines the methods from InventoryItemInterface.
My dilemma: I have this code I've created so far for Store.java and I'm getting confused with the returns from the methods. How do I implement a return with several things going on in a method. In particular for now
This file is to define methods found in this interface StoreInterface.java This file is the main user interface file StoreIU.java
[ edited to preserve formatting using the [code] and [/code]
UBB tags -ds ]
[ March 17, 2004: Message edited by: Dirk Schreckmann ]