Uses of Class
org.jdesktop.animation.timing.Animator

Packages that use Animator
org.jdesktop.animation.timing.interpolation Provides a mechanism for animating object properties between different values. 
org.jdesktop.animation.timing.triggers Provides simple mechanism for starting Animators when specific events occur. 
 

Uses of Animator in org.jdesktop.animation.timing.interpolation
 

Methods in org.jdesktop.animation.timing.interpolation that return Animator
static
<T> Animator
PropertySetter.createAnimator(int duration, java.lang.Object object, java.lang.String propertyName, Evaluator evaluator, T... params)
          Utility method that constructs a PropertySetter and an Animator using that PropertySetter and returns the Animator
static Animator PropertySetter.createAnimator(int duration, java.lang.Object object, java.lang.String propertyName, KeyFrames keyFrames)
          Utility method that constructs a PropertySetter and an Animator using that PropertySetter and returns the Animator
static
<T> Animator
PropertySetter.createAnimator(int duration, java.lang.Object object, java.lang.String propertyName, T... params)
          Utility method that constructs a PropertySetter and an Animator using that PropertySetter and returns the Animator
 

Uses of Animator in org.jdesktop.animation.timing.triggers
 

Methods in org.jdesktop.animation.timing.triggers with parameters of type Animator
static TimingTrigger TimingTrigger.addTrigger(Animator source, Animator target, TimingTriggerEvent event)
          Creates a non-auto-reversing TimingTrigger and adds it as a target to the source Animator.
static TimingTrigger TimingTrigger.addTrigger(Animator source, Animator target, TimingTriggerEvent event, boolean autoReverse)
          Creates a TimingTrigger and adds it as a target to the source Animator.
static FocusTrigger FocusTrigger.addTrigger(javax.swing.JComponent component, Animator animator, FocusTriggerEvent event)
          Creates a non-auto-reversing FocusTrigger and adds it as a FocusListener to the component.
static FocusTrigger FocusTrigger.addTrigger(javax.swing.JComponent component, Animator animator, FocusTriggerEvent event, boolean autoReverse)
          Creates a FocusTrigger and adds it as a FocusListener to the component.
static MouseTrigger MouseTrigger.addTrigger(javax.swing.JComponent component, Animator animator, MouseTriggerEvent event)
          Creates a non-auto-reversing MouseTrigger and adds it as a listener to component.
static MouseTrigger MouseTrigger.addTrigger(javax.swing.JComponent component, Animator animator, MouseTriggerEvent event, boolean autoReverse)
          Creates a MouseTrigger and adds it as a listener to component.
static ActionTrigger ActionTrigger.addTrigger(java.lang.Object object, Animator animator)
          Creates an ActionTrigger and adds it as a listener to object.
 

Constructors in org.jdesktop.animation.timing.triggers with parameters of type Animator
ActionTrigger(Animator animator)
          Creates an ActionTrigger that will start the animator upon receiving any ActionEvents.
FocusTrigger(Animator animator, FocusTriggerEvent event)
          Creates a non-auto-reversing FocusTrigger, which should be added to a Component that will generate the focus events of interest.
FocusTrigger(Animator animator, FocusTriggerEvent event, boolean autoReverse)
          Creates a FocusTrigger, which should be added to a Component that will generate the focus events of interest.
MouseTrigger(Animator animator, MouseTriggerEvent event)
          Creates a non-auto-reversing MouseTrigger, which should be added to a Component that will generate the mouse events of interest
MouseTrigger(Animator animator, MouseTriggerEvent event, boolean autoReverse)
          Creates a MouseTrigger, which should be added to a Component that will generate the mouse events of interest
TimingTrigger(Animator animator, TimingTriggerEvent event)
          Creates a non-auto-reversing TimingTrigger, which should be added to an Animator which will generate the events sent to the trigger.
TimingTrigger(Animator animator, TimingTriggerEvent event, boolean autoReverse)
          Creates a TimingTrigger, which should be added to an Animator which will generate the events sent to the trigger.
Trigger(Animator animator)
          Creates a Trigger that will start the animator when Trigger.fire() is called.
Trigger(Animator animator, TriggerEvent triggerEvent)
          Creates a Trigger that will start the animator when Trigger.fire(TriggerEvent) is called with an event that equals triggerEvent.
Trigger(Animator animator, TriggerEvent triggerEvent, boolean autoReverse)
          Creates a Trigger that will start the animator when Trigger.fire(TriggerEvent) is called with an event that equals triggerEvent.