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

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

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

Fields in org.zilonis.tool.ext.aerith.effects declared as ComponentState
protected  ComponentState ComponentEffect.end
          Information about the end state used by this effect.
protected  ComponentState ComponentEffect.start
          Information about the start state used by this effect.
 

Methods in org.zilonis.tool.ext.aerith.effects that return ComponentState
 ComponentState ComponentEffect.getEnd()
           
 ComponentState ComponentEffect.getStart()
           
 

Methods in org.zilonis.tool.ext.aerith.effects with parameters of type ComponentState
 void ComponentEffect.setComponentStates(ComponentState start, ComponentState end)
          Sets both the start and end states of this Effect.
 void CompositeEffect.setEnd(ComponentState end)
          This method is called during the initialization process of a transition and allows the effects to set up the end state for each effect.
 void ComponentEffect.setEnd(ComponentState end)
          Sets the end state of this Effect.
 void CompositeEffect.setStart(ComponentState start)
          This method is called during the initialization process of a transition and allows the effects to set up the start state for each effect.
 void ComponentEffect.setStart(ComponentState start)
          Sets the start state of this Effect.
 

Constructors in org.zilonis.tool.ext.aerith.effects with parameters of type ComponentState
FadeIn(ComponentState end)
          Creates a new instance of FadeIn with the given end state.
FadeOut(ComponentState start)
          Creates a new instance of FadeOut with the given start state.
Move(ComponentState start, ComponentState end)
          REMIND: docs
Rotate(ComponentState start, ComponentState end, int degrees, int xCenter, int yCenter)
          Construct a Rotate effect for a given component with the number of degrees you wish to rotate through during the transition and the center of rotation to use.
Scale(ComponentState start, ComponentState end)
          Creates a new instance of Scale
Unchanging(ComponentState start, ComponentState end)