Uses of Interface
org.jvnet.lafwidget.animation.FadeStep

Packages that use FadeStep
org.jvnet.lafwidget.animation   
org.jvnet.lafwidget.utils   
 

Uses of FadeStep in org.jvnet.lafwidget.animation
 

Classes in org.jvnet.lafwidget.animation that implement FadeStep
 class FadeAccelerationStep
          Implementation of FadeStep for accelerated fades.
 class FadeConstantStep
          Default implementation of FadeStep for linear (constant-step) fades.
 class FadeDecelerationStep
          Implementation of FadeStep for decelerated fades.
 

Fields in org.jvnet.lafwidget.animation declared as FadeStep
protected  FadeStep FadeAccelerationStep.delegate
          Delegate.
protected  FadeStep FadeDecelerationStep.delegate
          Delegate.
 FadeStep FadeState.fadeStep
          Fade animation step.
 

Constructors in org.jvnet.lafwidget.animation with parameters of type FadeStep
FadeAccelerationStep(FadeStep delegate, float accelerationFactor)
          Creates an accelerated implementation.
FadeDecelerationStep(FadeStep delegate, float decelerationFactor)
          Creates an decelerated implementation.
 

Uses of FadeStep in org.jvnet.lafwidget.utils
 

Methods in org.jvnet.lafwidget.utils that return FadeStep
 FadeStep LafConstants.AnimationKind.getStep()
          Returns the step of this animation in seconds.
 

Constructors in org.jvnet.lafwidget.utils with parameters of type FadeStep
LafConstants.AnimationKind(FadeStep step, java.lang.String name)
          Creates a new animation kind.