Uses of Class
org.jdesktop.animation.transitions.Effect

Packages that use Effect
org.jdesktop.animation.transitions   
org.jdesktop.animation.transitions.effects   
 

Uses of Effect in org.jdesktop.animation.transitions
 

Methods in org.jdesktop.animation.transitions that return Effect
static Effect EffectsManager.getEffect(javax.swing.JComponent component, EffectsManager.TransitionType transitionType)
          This method is called during the setup phase for any transition.
 

Methods in org.jdesktop.animation.transitions with parameters of type Effect
 void Effect.init(org.jdesktop.animation.timing.Animator animator, Effect parentEffect)
           
static void EffectsManager.setEffect(javax.swing.JComponent component, Effect effect, EffectsManager.TransitionType transitionType)
          This method is used to cache a custom effect on a per-component basis for the application.
 

Uses of Effect in org.jdesktop.animation.transitions.effects
 

Subclasses of Effect in org.jdesktop.animation.transitions.effects
 class CompositeEffect
          This Effect combines one or more sub-effects to create a more complex and interesting effect.
 class Fade
          Effect that performs a Fade (in or out) on the component.
 class FadeIn
          Simple subclass of Fade effect that will fade a component from nothing to an existing end state.
 class FadeOut
          Simple subclass of Fade effect that will fade a component from an existing start state to nothing.
 class Move
          Effect that moves a component from its position in the start state to its position in the end state, based on linear interpolation between the two points during the time of the animated transition.
 class Rotate
          This Effect rotates an image through a given number of degrees during the animated transition.
 class Scale
          Effect that resizes a component during the transition.
 class Unchanging
           
 

Methods in org.jdesktop.animation.transitions.effects with parameters of type Effect
 void CompositeEffect.addEffect(Effect effect)
          Adds an additional effect to this CompositeEffect.
 void Scale.init(org.jdesktop.animation.timing.Animator animator, Effect parentEffect)
           
 void Rotate.init(org.jdesktop.animation.timing.Animator animator, Effect parentEffect)
           
 void Move.init(org.jdesktop.animation.timing.Animator animator, Effect parentEffect)
           
 void FadeOut.init(org.jdesktop.animation.timing.Animator animator, Effect parentEffect)
           
 void FadeIn.init(org.jdesktop.animation.timing.Animator animator, Effect parentEffect)
           
 void CompositeEffect.init(org.jdesktop.animation.timing.Animator animator, Effect parentEffect)
           
 

Constructors in org.jdesktop.animation.transitions.effects with parameters of type Effect
CompositeEffect(Effect effect)
          Creates a CompositeEffect with the given effect as the first sub-effect.