Package com.jidesoft.swing
Interface AnimatorListener
- All Superinterfaces:
EventListener
This is a listener that can be used to customize the behaviour of animation.
-
Method Summary
Modifier and TypeMethodDescriptionvoidanimationEnds(Component component) Called when the animation sequence ends.voidanimationFrame(Component component, int totalStep, int step) Called when the animation sequence runs at certain step..voidanimationStarts(Component component) Called when the animation sequence starts.
-
Method Details
-
animationStarts
Called when the animation sequence starts.- Parameters:
component- the component for this animation
-
animationFrame
Called when the animation sequence runs at certain step..- Parameters:
component- the component for this animationtotalStep- the total stepsstep- the current step
-
animationEnds
Called when the animation sequence ends.- Parameters:
component- the component for this animation
-