Uses of Interface
org.jdesktop.animation.timing.TimingTarget

Packages that use TimingTarget
org.jdesktop.animation.timing Core classes of the Timing Framework; these classes provide the base functionality that all animations will use. 
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 TimingTarget in org.jdesktop.animation.timing
 

Classes in org.jdesktop.animation.timing that implement TimingTarget
 class TimingTargetAdapter
          Implements the TimingTarget interface, providing stubs for all TimingTarget methods.
 

Methods in org.jdesktop.animation.timing with parameters of type TimingTarget
 void Animator.addTarget(TimingTarget target)
          Adds a TimingTarget to the list of targets that get notified of each timingEvent.
 void Animator.removeTarget(TimingTarget target)
          Removes the specified TimingTarget from the list of targets that get notified of each timingEvent.
 

Constructors in org.jdesktop.animation.timing with parameters of type TimingTarget
Animator(int duration, double repeatCount, Animator.RepeatBehavior repeatBehavior, TimingTarget target)
          Constructor that sets the most common properties of a repeating animation.
Animator(int duration, TimingTarget target)
          Constructor: this is a utility constructor for a simple timing sequence that will run for duration length of time.
 

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

Classes in org.jdesktop.animation.timing.interpolation that implement TimingTarget
 class PropertySetter
          This class enables automating animation of object properties.
 

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

Classes in org.jdesktop.animation.timing.triggers that implement TimingTarget
 class TimingTrigger
          TimingTrigger handles timing events and starts the animator when those events occur.