public static class

CellTree.SlideAnimation

extends CellTree.RevealAnimation
java.lang.Object
   ↳ com.google.gwt.animation.client.Animation
     ↳ com.google.gwt.user.cellview.client.CellTree.NodeAnimation
       ↳ com.google.gwt.user.cellview.client.CellTree.RevealAnimation
         ↳ com.google.gwt.user.cellview.client.CellTree.SlideAnimation

Class Overview

A CellTree.NodeAnimation that slides children into view.

Summary

Public Methods
static CellTree.SlideAnimation create()
Protected Methods
void onComplete()
Called immediately after the animation completes.
void onStart()
Called immediately before the animation starts.
void onUpdate(double progress)
Called when the animation should be updated.
[Expand]
Inherited Methods
From class com.google.gwt.user.cellview.client.CellTree.RevealAnimation
From class com.google.gwt.user.cellview.client.CellTree.NodeAnimation
From class com.google.gwt.animation.client.Animation
From class java.lang.Object

Public Methods

public static CellTree.SlideAnimation create ()

Returns
  • the new animation

Protected Methods

protected void onComplete ()

Called immediately after the animation completes.

protected void onStart ()

Called immediately before the animation starts.

protected void onUpdate (double progress)

Called when the animation should be updated. The value of progress is between 0.0 and 1.0 (inclusive) (unless you override the interpolate(double) method to provide a wider range of values). You can override onStart() and onComplete() to perform setup and tear down procedures.

Parameters
progress a double, normally between 0.0 and 1.0 (inclusive)