Packageorg.springextensions.actionscript.core.task.event
SVN browsingTaskFlowControlEvent.as
FisheyeTaskFlowControlEvent.as
Classpublic class TaskFlowControlEvent
InheritanceTaskFlowControlEvent Inheritance flash.events.Event



Documentation reference: tasks


Public Methods
 MethodDefined by
  
TaskFlowControlEvent(kind:TaskFlowControlKind, bubbles:Boolean = false, cancelable:Boolean = false)
Creates a new TaskFlowControlEvent instance.
TaskFlowControlEvent
  
clone():Event
TaskFlowControlEvent
Public Constants
 ConstantDefined by
  BREAK : String = ""
[static] Indicates a break in the flow control.
TaskFlowControlEvent
  CONTINUE : String = ""
[static] Indicates a continuation in the flow control.
TaskFlowControlEvent
  EXIT : String = ""
[static] Indicates an exit (abort) of the flow control.
TaskFlowControlEvent
Constructor detail
TaskFlowControlEvent()constructor
public function TaskFlowControlEvent(kind:TaskFlowControlKind, bubbles:Boolean = false, cancelable:Boolean = false)

Creates a new TaskFlowControlEvent instance.

Parameters
kind:TaskFlowControlKind
 
bubbles:Boolean (default = false)
 
cancelable:Boolean (default = false)
Method detail
clone()method
public override function clone():Event

Returns
Event — An exact copy of the current TaskFlowControlEvent.
Constant detail
BREAKconstant
public static const BREAK:String = ""

Indicates a break in the flow control.

CONTINUEconstant 
public static const CONTINUE:String = ""

Indicates a continuation in the flow control.

EXITconstant 
public static const EXIT:String = ""

Indicates an exit (abort) of the flow control.