Interface IsDefaultBaseAnimation
- 
- All Known Subinterfaces:
- IsAnimation,- IsDefaultAnimation,- IsDefaultAnimationCollection
 - All Known Implementing Classes:
- Animation,- Animation,- AnimationCollection,- DefaultAnimation,- DefaultAnimationCollection,- DefaultChartAnimation,- DefaultChartAnimationCollection,- UpdateConfiguration
 
 public interface IsDefaultBaseAnimationInterface to define the base animation properties defaults.- Author:
- Andrea "Stock" Stocchero
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetDelay()Returns the delay before starting the animations.DelayCallbackgetDelayCallback()Returns the callback to set the delay before starting the animations.intgetDuration()Returns the number of milliseconds an animation takes.DurationCallbackgetDurationCallback()Returns the callback to set the number of milliseconds an animation takes.EasinggetEasing()Returns the animation easing.EasingCallbackgetEasingCallback()Returns the callback to set the animation easing.LoopCallbackgetLoopCallback()Returns the callback to loop the animations endlessly.booleanisLoop()If set totrue, loops the animations endlessly.
 
- 
- 
- 
Method Detail- 
getEasingEasing getEasing() Returns the animation easing.- Returns:
- animation easing.
 
 - 
getDurationint getDuration() Returns the number of milliseconds an animation takes.- Returns:
- the number of milliseconds an animation takes.
 
 - 
getDelayint getDelay() Returns the delay before starting the animations.- Returns:
- the delay before starting the animations
 
 - 
isLoopboolean isLoop() If set totrue, loops the animations endlessly.- Returns:
- trueif loops the animations endlessly.
 
 - 
getDurationCallbackDurationCallback getDurationCallback() Returns the callback to set the number of milliseconds an animation takes.- Returns:
- the callback instance to use
 
 - 
getDelayCallbackDelayCallback getDelayCallback() Returns the callback to set the delay before starting the animations.- Returns:
- the callback instance to use
 
 - 
getLoopCallbackLoopCallback getLoopCallback() Returns the callback to loop the animations endlessly.- Returns:
- the callback instance to use
 
 - 
getEasingCallbackEasingCallback getEasingCallback() Returns the callback to set the animation easing.- Returns:
- the callback instance to use
 
 
- 
 
-