Package info.monitorenter.gui.util
Interface ColorIterator.ISteppingModel
-
- All Superinterfaces:
java.lang.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 java.lang.CloneableDefines the strategy of walking through the HSB color space.- Version:
- $Revision: 1.10 $
- Author:
- Achim Westermann
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Objectclone()Creates a clone of this stepper.voiddoStep(ColorIterator tostep)Performs a step on the given color iterator.voidsetSteps(int steps)Sets the amount of steps in the color space.
-
-
-
Method Detail
-
clone
java.lang.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.
-
-