Uses of Class
org.jdesktop.animation.timing.triggers.TimingTriggerEvent

Packages that use TimingTriggerEvent
org.jdesktop.animation.timing.triggers Provides simple mechanism for starting Animators when specific events occur. 
 

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

Fields in org.jdesktop.animation.timing.triggers declared as TimingTriggerEvent
static TimingTriggerEvent TimingTriggerEvent.REPEAT
          Event fired when Animator finishes one cycle and starts another
static TimingTriggerEvent TimingTriggerEvent.START
          Event fired when Animator starts
static TimingTriggerEvent TimingTriggerEvent.STOP
          Event fired when Animator stops
 

Methods in org.jdesktop.animation.timing.triggers with parameters of type TimingTriggerEvent
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.
 

Constructors in org.jdesktop.animation.timing.triggers with parameters of type TimingTriggerEvent
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.