Uses of Class
cmsc433.p2.Food

Uses of Food in cmsc433.p2
 

Fields in cmsc433.p2 declared as Food
 Food SimulationEvent.food
           
 Food Machine.food
           
 

Fields in cmsc433.p2 with type parameters of type Food
 java.util.List<Food> SimulationEvent.orderFood
           
 

Methods in cmsc433.p2 with parameters of type Food
static SimulationEvent SimulationEvent.cookFinishedFood(Cook cook, Food food, int orderNumber)
           
static SimulationEvent SimulationEvent.cookStartedFood(Cook cook, Food food, int orderNumber)
           
static SimulationEvent SimulationEvent.machineCookingFood(Machine machine, Food food)
           
static SimulationEvent SimulationEvent.machineDoneFood(Machine machine, Food food)
           
static SimulationEvent SimulationEvent.machineStarting(Machine machine, Food food, int capacity)
           
 

Method parameters in cmsc433.p2 with type arguments of type Food
static SimulationEvent SimulationEvent.cookReceivedOrder(Cook cook, java.util.List<Food> order, int orderNumber)
           
static SimulationEvent SimulationEvent.eaterPlacedOrder(Eater eater, java.util.List<Food> order, int orderNumber)
           
static SimulationEvent SimulationEvent.eaterReceivedOrder(Eater eater, java.util.List<Food> order, int orderNumber)
           
 

Constructors in cmsc433.p2 with parameters of type Food
Machine(java.lang.String name, Food food, int capacity)
          The constructor takes at least the name of the machine, the Food item it makes, and its capacity.
 

Constructor parameters in cmsc433.p2 with type arguments of type Food
Eater(java.lang.String name, java.util.List<Food> order)
          You can feel free modify this constructor.