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

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

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

Fields in org.jdesktop.animation.timing.triggers declared as FocusTriggerEvent
static FocusTriggerEvent FocusTriggerEvent.IN
          Event fired when Component receives focus
static FocusTriggerEvent FocusTriggerEvent.OUT
          Event fired when Component loses focus
 

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

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