Package Behavioral.Strategy


package Behavioral.Strategy
  • Class
    Description
    A Concrete Strategy that implements an algorithm.
    Another Concrete Strategy that implements a different algorithm.
    The Context class maintains a reference to a Strategy object and delegates the execution to it.
    The Strategy interface declares the common behavior for all supported algorithms.