Uses of Class
Order

Uses of Order in
 

Fields in Default Package declared as Order
 Order Parcel.order
          Order containing this.
 

Methods in Default Package with parameters of type Order
 boolean ACraneStrategy.addOrder(Order anOrder)
          Places the given order in the warehouse and returns true, or returns false if it could not be placed.
 boolean ACraneStrategy.removeOrder(Order anOrder)
          Removes the given order from the warehouse and returns true, or returns false if it could not be removed.
protected  void ACraneStrategy.beginAdd(Order anOrder)
          Called when the given order is to be added to the warehouse.
protected  void ACraneStrategy.beginRemove(Order anOrder)
          Called when the given order is to be removed from the warehouse.
protected  Point ACraneStrategy.getRemoveLocation(Order anOrder)
          Returns a location in the warehouse from which a parcel in the given order should be removed.
protected  Point CenterStrategy.getRemoveLocation(Order anOrder)
          Returns a location near the center of the warehouse that contains a parcel in the given lot, or returns null if there are no parcels in the given order.
 boolean Crane.addOrder(Order anOrder)
          Places the given order in the warehouse and returns true, or returns false if it could not be placed.
 boolean Crane.removeOrder(Order anOrder)
          Removes the given order from the warehouse and returns true, or returns false if it could not be removed.
protected  Point RandomStrategy.getRemoveLocation(Order anOrder)
          Returns a location from which to remove a parcel in the given order.
protected  void RowsStrategy.beginAdd(Order anOrder)
          Finds a row with enough space to hold the given order.
 boolean Warehouse.addOrder(Order anOrder)
          Places the given order in the warehouse and returns true, or returns false if it could not be placed.
 boolean Warehouse.removeOrder(Order anOrder)
          Removes the given order from the warehouse and returns true, or returns false if it could not be removed.
 boolean Warehouse.isFragmented(Order anOrder)
          Returns whether or not the given order is fragmented.