Uses of Class
org.jdesktop.animation.timing.interpolation.Evaluator

Packages that use Evaluator
org.jdesktop.animation.timing.interpolation Provides a mechanism for animating object properties between different values. 
 

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

Methods in org.jdesktop.animation.timing.interpolation with parameters of type Evaluator
static
<T> KeyValues<T>
KeyValues.create(Evaluator evaluator, T... params)
          Constructs a KeyValues object from a Evaluator and one or more values.
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
 

Constructors in org.jdesktop.animation.timing.interpolation with parameters of type Evaluator
PropertySetter(java.lang.Object object, java.lang.String propertyName, Evaluator evaluator, T... params)
          Constructor for a PropertySetter where the values the propert takes on during the animation are specified in a KeyFrames object.