Uses of Class
ACraneStrategy

Uses of ACraneStrategy in
 

Subclasses of ACraneStrategy in Default Package
 class CenterStrategy
          Strategy that picks locations near the center of the warehouse.
 class RandomStrategy
          Strategy that picks add locations at random.
 class RowsStrategy
          Strategies that adds parcels to rows with enough contiguous space to hold the whole order.
 

Fields in Default Package declared as ACraneStrategy
protected  ACraneStrategy Crane.driver
          Device driver governing the operation of this crane.
 

Methods in Default Package that return ACraneStrategy
 ACraneStrategy Crane.getStrategy()
          Returns the strategy for this crane.
protected  ACraneStrategy WarehouseApplication.getStrategy(int index)
          Gets the strategy at the given index.
 

Methods in Default Package with parameters of type ACraneStrategy
 void Crane.installStrategy(ACraneStrategy d)
          Installs the given device driver into this crane.
 void WarehouseApplication.addStrategy(ACraneStrategy s)
          Adds a strategy for use in this simulation.