Interface ColorIterator.ISteppingModel

All Superinterfaces:
Cloneable
All Known Implementing Classes:
ColorIterator.ADefaultStepping, ColorIterator.AlphaStepper, ColorIterator.APiggyBackStepper, ColorIterator.HSBStepper, ColorIterator.HSStepper, ColorIterator.HueStepper, ColorIterator.LuminanceStepper, ColorIterator.SaturationStepper
Enclosing class:
ColorIterator

public static interface ColorIterator.ISteppingModel extends Cloneable
Defines the strategy of walking through the HSB color space.

Version:
$Revision: 1.10 $
Author:
Achim Westermann
  • Method Summary

    Modifier and Type
    Method
    Description
    Creates a clone of this stepper.
    void
    Performs a step on the given color iterator.
    void
    setSteps(int steps)
    Sets the amount of steps in the color space.
  • Method Details

    • clone

      Object clone()
      Creates a clone of this stepper.

      Returns:
      a clone of this stepper.
    • doStep

      void doStep(ColorIterator tostep)
      Performs a step on the given color iterator.

      Parameters:
      tostep - the color iterator to perform a step on.
    • setSteps

      void setSteps(int steps)
      Sets the amount of steps in the color space.

      Parameters:
      steps - the amount of steps in the color space.