| Package | org.springextensions.actionscript.core.task |
| SVN browsing | ITaskBlock.as |
| Fisheye | ITaskBlock.as |
| Interface | public interface ITaskBlock |
| Subinterfaces | IForBlock, IIfElseBlock, IWhileBlock |
| Implementors | AbstractTaskBlock |
Documentation reference: tasks
| Property | Defined by | ||
|---|---|---|---|
| isClosed : Boolean [read-only]
If
true no more ICommands can be added to the current ITaskBlock. | ITaskBlock | ||
| Method | Defined by | ||
|---|---|---|---|
|
Interupts the current
ITaskBlock if its part of a loop construct. | ITaskBlock | ||
|
Continues the current
ITaskBlock if its part of a loop construct. | ITaskBlock | ||
| isClosed | property |
isClosed:Boolean [read-only]
If true no more ICommands can be added to the current ITaskBlock.
public function get isClosed():Boolean
| break_ | () | method |
public function break_():ITask
Interupts the current ITaskBlock if its part of a loop construct.
ITask —
The current ITaskBlock's parent task;
|
| continue_ | () | method |
public function continue_():ITask
Continues the current ITaskBlock if its part of a loop construct.
ITask —
The current ITaskBlock's parent task;
|