| java.lang.Object fr.aliacom.commands.Command fr.aliacom.commands.ASyncCommand
All known Subclasses: fr.aliacom.commands.PythonCommand,
ASyncCommand | abstract public class ASyncCommand extends Command (Code) | | This class provides a way to queue actions at the end
the UI thread of the registered toolkit.
The command will still block the ui, but it will block
it later.
If you need to do a long operation before update the UI,
use a FormWorker .
|
Method Summary | |
public void | run() | public void | setEnabled(boolean b) If the enabled property is changed during command execution,
the command will have the state you asked during execution. |
ASyncCommand | public ASyncCommand()(Code) | | |
setEnabled | public void setEnabled(boolean b)(Code) | | If the enabled property is changed during command execution,
the command will have the state you asked during execution.
If you don't change the enabled property during execution, the
command will automagically re-enable itself at the end of the execution.
|
|
|