Uses of Class
Slot

Uses of Slot in
 

Fields in Default Package declared as Slot
protected  Slot[] BasicDrinkMachine.slotArray
          The slot array that slot information is served out of.
 

Methods in Default Package that return Slot
 Slot[] BasicDrinkMachine.getSlotArray()
          Returns an array of Slot objects containing the information for all of the slots.
 Slot BasicDrinkMachine.getSlot(int slot)
          Returns a Slot object containing the information for the given slot index.
private static Slot ConfigConverter.getSlot(int slot)
          Returns the Slot object associated with the given slot index.
 Slot DrinkMachineSpec.getSlot(int slot)
          Returns the Slot object associated with the slot index.
 Slot[] DrinkMachineSpec.getSlotArray()
          Returns an array of the Slot objects that store the slot information.
 Slot[] SlotDataMgr.readFile()
          Reads the slot data out of the file.
 

Methods in Default Package with parameters of type Slot
 void BasicDrinkMachine.setSlot(int slotIndex, Slot slot)
          Sets the information for a given slot index to the given Slot object
 void DrinkMachineSpec.setSlot(int slot, Slot s)
          Sets the Slot object associated with the specified slot index.
 boolean Slot.equals(Slot other)
           
 void SlotDataMgr.saveSlotArray(Slot[] slotArray)
          Write an entire array of slots out to the file this class is handling.
 void SlotDataMgr.updateSlot(Slot slot)
          Updates the data for just the indicated slot.