Package org.eclipse.nebula.effects.stw
Interface TransitionListener
-
public interface TransitionListener
Classes which implement this interface provide methods that handle the transition finished event.
After creating an instance of a class that implements this interface it can be added to a transition manager using theTransitionManager.addTransitionListener(TransitionListener)
method and removed using theTransitionManager.removeTransitionListener(TransitionListener)
method.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
transitionFinished(TransitionManager transitionManager)
This method is called when the transition is finished.
-
-
-
Method Detail
-
transitionFinished
void transitionFinished(TransitionManager transitionManager)
This method is called when the transition is finished.- Parameters:
transitionManager
- is the transition manager caller object
-
-