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 TypeMethodDescriptionvoid
animationEnds
(Component component) Called when the animation sequence ends.void
animationFrame
(Component component, int totalStep, int step) Called when the animation sequence runs at certain step..void
animationStarts
(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
-