Uses of Class
org.zilonis.tool.ext.aerith.effects.ComponentEffect

Packages that use ComponentEffect
org.zilonis.tool.ext.aerith.effects   
 

Uses of ComponentEffect in org.zilonis.tool.ext.aerith.effects
 

Subclasses of ComponentEffect in org.zilonis.tool.ext.aerith.effects
 class ComponentImageEffect
          Abstract class that contains the logic for rendering an image of the component during the transition, rather than rendering the component itself.
 class CompositeEffect
          This Effect combines one or more sub-effects to create a more complex and interesting effect.
 class Fade
          ComponentEffect 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
          ComponentEffect 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 ComponentEffect rotates an image through a given number of degrees during the animated transition.
 class Scale
          ComponentEffect that resizes a component during the transition.
 class Unchanging
           
 

Methods in org.zilonis.tool.ext.aerith.effects that return ComponentEffect
static ComponentEffect EffectsManager.getEffect(java.awt.Component component, EffectsManager.TransitionType transitionType)
          This method is called during the setup phase for any transition.
 

Methods in org.zilonis.tool.ext.aerith.effects with parameters of type ComponentEffect
 void CompositeEffect.addEffect(ComponentEffect effect)
          Adds an additional effect to this CompositeEffect.
static void EffectsManager.setEffect(java.awt.Component component, ComponentEffect effect, EffectsManager.TransitionType transitionType)
          This method is used to cache a custom effect on a per-component basis for the application.
 

Constructors in org.zilonis.tool.ext.aerith.effects with parameters of type ComponentEffect
CompositeEffect(ComponentEffect effect)
          Creates a CompositeEffect with the given effect as the first sub-effect.