Package com.google.gwt.user.client
Interface IncrementalCommand
- All Superinterfaces:
Scheduler.RepeatingCommand
Deprecated.
An
IncrementalCommand
is a command that is broken into one or
more substeps, each substep brings the whole command nearer to completion.
The command is complete when execute()
returns
false
.
public class IncrementalCommandExample implements EntryPoint { public void onModuleLoad() { final Label label = new Label(); DeferredCommand.addCommand(new IncrementalCommand() { private int index = 0; protected static final int COUNT = 10; public boolean execute() { label.setText("IncrementalCommand - index " + Integer.toString(index)); return ++index < COUNT; } }); } }
-
Method Summary
Modifier and TypeMethodDescriptionboolean
execute()
Deprecated.Causes theIncrementalCommand
to execute its encapsulated behavior.
-
Method Details
-
execute
boolean execute()Deprecated.Causes theIncrementalCommand
to execute its encapsulated behavior.- Specified by:
execute
in interfaceScheduler.RepeatingCommand
- Returns:
true
if the command has more work to do,false
otherwise
-
Scheduler.RepeatingCommand
andScheduler.scheduleIncremental()