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

Packages that use FadeTrackerCallback
org.jvnet.lafwidget.animation   
 

Uses of FadeTrackerCallback in org.jvnet.lafwidget.animation
 

Classes in org.jvnet.lafwidget.animation that implement FadeTrackerCallback
 class FadeTrackerAdapter
          Default implementation of FadeTrackerCallback that does nothing.
 class UIThreadFadeTrackerAdapter
          Empty implementation of FadeTrackerCallback that does nothing but is marked to run on the EDT.
 

Fields in org.jvnet.lafwidget.animation declared as FadeTrackerCallback
protected  FadeTrackerCallback FadeStateListener.callback
          Optional application callback.
 

Methods in org.jvnet.lafwidget.animation that return FadeTrackerCallback
 FadeTrackerCallback FadeState.getCallback()
          Returns the application callback.
 

Methods in org.jvnet.lafwidget.animation with parameters of type FadeTrackerCallback
 void FadeState.setCallback(FadeTrackerCallback callback)
          Sets the callback.
 long FadeTracker.trackFade(java.awt.Component comp, FadeKind fadeKind, boolean isFadeIn, boolean toRepaintParent, FadeTrackerCallback callback)
          Requests start of fade tracking on the specified component.
 long FadeTracker.trackFadeIn(FadeKind fadeKind, java.awt.Component comp, boolean toRepaintParent, FadeTrackerCallback callback)
          Requests start of fade-in tracking on the specified component.
 long FadeTracker.trackFadeIn(FadeKind fadeKind, java.awt.Component comp, java.lang.Comparable<?> componentId, boolean toRepaintParent, FadeTrackerCallback callback)
          Requests start of fade-in tracking on the specified component.
 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.trackFadeIn(FadeKind fadeKind, java.awt.Component comp, int componentId, boolean toRepaintParent, FadeTrackerCallback callback)
          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, boolean toRepaintParent, FadeTrackerCallback callback)
          Requests start of fade-out tracking on the specified component.
 long FadeTracker.trackFadeOut(FadeKind fadeKind, java.awt.Component comp, java.lang.Comparable<?> componentId, boolean toRepaintParent, FadeTrackerCallback callback)
          Requests start of fade-out 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.
 long FadeTracker.trackFadeOut(FadeKind fadeKind, java.awt.Component comp, int componentId, boolean toRepaintParent, FadeTrackerCallback callback)
          Requests start of fade-out tracking on the specified component.
 

Constructors in org.jvnet.lafwidget.animation with parameters of type FadeTrackerCallback
FadeStateListener(java.awt.Component comp, javax.swing.ButtonModel buttonModel, FadeTrackerCallback callback)
          Creates a new listener on model changes that can cause fade animation transitions.
FadeStateListener(java.awt.Component comp, java.lang.Comparable<?> extraKey, javax.swing.ButtonModel buttonModel, FadeTrackerCallback callback, java.util.Set<FadeKind> toIgnore)
          Creates a new listener on model changes that can cause fade animation transitions.