pivot.wtk.skin
Class CardPaneSkin.SelectionChangeTransition

java.lang.Object
  extended by pivot.wtk.effects.Transition
      extended by pivot.wtk.skin.CardPaneSkin.SelectionChangeTransition
Enclosing class:
CardPaneSkin

public class CardPaneSkin.SelectionChangeTransition
extends Transition


Field Summary
 
Fields inherited from class pivot.wtk.effects.Transition
DEFAULT_DURATION, DEFAULT_RATE
 
Constructor Summary
CardPaneSkin.SelectionChangeTransition(int previousSelectedIndex, int selectedIndex, int duration, int rate)
           
 
Method Summary
 float getEasedSlidePercentComplete()
           
 Component getPreviousSelectedCard()
           
 Component getSelectedCard()
           
 void start(TransitionListener transitionListener)
          Starts the transition.
 void stop()
          Stops the transition.
protected  void update()
          Called repeatedly while the transition is running to update the transition's state.
 
Methods inherited from class pivot.wtk.effects.Transition
end, getCurrentTime, getDuration, getElapsedTime, getInterval, getPercentComplete, getRate, getStartTime, isRunning, setDuration, setRate, start
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CardPaneSkin.SelectionChangeTransition

public CardPaneSkin.SelectionChangeTransition(int previousSelectedIndex,
                                              int selectedIndex,
                                              int duration,
                                              int rate)
Method Detail

start

public void start(TransitionListener transitionListener)
Description copied from class: Transition
Starts the transition. Calls Transition.update() to establish the initial state and starts a timer that will repeatedly call Transition.update() at the current rate. The specified TransitionListener will be notified when the transition completes.

Overrides:
start in class Transition
Parameters:
transitionListener - The listener to get notified when the transition completes, or null if no notification is necessary

stop

public void stop()
Description copied from class: Transition
Stops the transition. Does not fire a TransitionListener.transitionCompleted(Transition) event.

Overrides:
stop in class Transition

update

protected void update()
Description copied from class: Transition
Called repeatedly while the transition is running to update the transition's state.

Specified by:
update in class Transition

getEasedSlidePercentComplete

public float getEasedSlidePercentComplete()

getPreviousSelectedCard

public Component getPreviousSelectedCard()

getSelectedCard

public Component getSelectedCard()