Uses of Class
org.jvnet.lafwidget.utils.LafConstants.AnimationKind

Packages that use LafConstants.AnimationKind
org.jvnet.lafwidget   
org.jvnet.lafwidget.animation   
org.jvnet.lafwidget.utils   
 

Uses of LafConstants.AnimationKind in org.jvnet.lafwidget
 

Methods in org.jvnet.lafwidget that return LafConstants.AnimationKind
static LafConstants.AnimationKind LafWidgetUtilities.getAnimationKind(java.awt.Component component)
          Returns the animation kind of the specified component.
 

Uses of LafConstants.AnimationKind in org.jvnet.lafwidget.animation
 

Methods in org.jvnet.lafwidget.animation with parameters of type LafConstants.AnimationKind
 long FadeTracker.trackFadeIn(FadeKind fadeKind, java.awt.Component comp, java.lang.Comparable<?> componentId, boolean toRepaintParent, FadeTrackerCallback callback, LafConstants.AnimationKind aKind)
          Requests start of fade-in tracking on the specified component.
 long FadeTracker.trackFadeLooping(FadeKind fadeKind, LafConstants.AnimationKind animationKind, java.awt.Component comp, java.lang.Comparable<?> componentId, boolean toRepaintParent, FadeTrackerCallback callback, int loopCount, boolean isLoopingReverse)
          Requests start of looping fade tracking on the specified component.
 long FadeTracker.trackFadeOut(FadeKind fadeKind, java.awt.Component comp, java.lang.Comparable<?> componentId, boolean toRepaintParent, FadeTrackerCallback callback, LafConstants.AnimationKind aKind)
          Requests start of fade-out tracking on the specified component.
 

Uses of LafConstants.AnimationKind in org.jvnet.lafwidget.utils
 

Fields in org.jvnet.lafwidget.utils declared as LafConstants.AnimationKind
static LafConstants.AnimationKind LafConstants.AnimationKind.DEBUG
          Animation for debug purposes (ultra-slow).
static LafConstants.AnimationKind LafConstants.AnimationKind.DEBUG_FAST
          Animation for debug purposes (slow).
static LafConstants.AnimationKind LafConstants.AnimationKind.DEBUG_SLOW
          Animation for debug purposes (extremely-slow).
static LafConstants.AnimationKind LafConstants.AnimationKind.FAST
          Fast animation.
static LafConstants.AnimationKind LafConstants.AnimationKind.NONE
          No animation.
static LafConstants.AnimationKind LafConstants.AnimationKind.REGULAR
          Regular (default) animation.
static LafConstants.AnimationKind LafConstants.AnimationKind.SLOW
          Slow animation.
 

Methods in org.jvnet.lafwidget.utils that return LafConstants.AnimationKind
 LafConstants.AnimationKind LafConstants.AnimationKind.derive(float factor)
          Creates a derived (accelerated or decelerated) animation kind.