Class SequencedAnimation

  • Direct Known Subclasses:
    LinearFadeInAnimation, LinearFadeOutAnimation, Pause

    public abstract class SequencedAnimation
    extends com.google.gwt.animation.client.Animation
    An animation that can be sequenced to run in a list of animations. In reality we only GWT's Animation's protected methods to be public so we can chain the completion of one Animation to another.
    • Constructor Detail

      • SequencedAnimation

        public SequencedAnimation()
    • Method Detail

      • interpolate

        public double interpolate​(double progress)
        Overrides:
        interpolate in class com.google.gwt.animation.client.Animation
      • onCancel

        public void onCancel()
        Overrides:
        onCancel in class com.google.gwt.animation.client.Animation
      • onStart

        public void onStart()
        Overrides:
        onStart in class com.google.gwt.animation.client.Animation
      • onComplete

        public void onComplete()
        Overrides:
        onComplete in class com.google.gwt.animation.client.Animation
      • onUpdate

        public abstract void onUpdate​(double progress)
        Specified by:
        onUpdate in class com.google.gwt.animation.client.Animation