public static class

CellTree.RevealAnimation

extends CellTree.NodeAnimation
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
Known Direct Subclasses

Class Overview

A CellTree.NodeAnimation that reveals the contents of child nodes.

Summary

Public Methods
static CellTree.RevealAnimation 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.NodeAnimation
From class com.google.gwt.animation.client.Animation
From class java.lang.Object

Public Methods

public static CellTree.RevealAnimation 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)