Package | org.flexunit.events |
Class | public class AsyncEvent |
Inheritance | AsyncEvent ![]() |
Property | Defined By | ||
---|---|---|---|
originalEvent : Event
A reference to the original event object fired by the developers test code. | AsyncEvent |
Method | Defined By | ||
---|---|---|---|
AsyncEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, originalEvent:Event = null)
Constructor. | AsyncEvent | ||
clone():Event [override]
Called by the framework to facilitate any requisite event bubbling
| AsyncEvent |
originalEvent | property |
public var originalEvent:Event
A reference to the original event object fired by the developers test code.
AsyncEvent | () | Constructor |
public function AsyncEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, originalEvent:Event = null)
Constructor. This class has all of the properties of the event class in addition to the originalEvent property.
Parameterstype:String — The event type; indicates the action that triggered the event.
| |
bubbles:Boolean (default = false ) — Specifies whether the event can bubble
up the display list hierarchy.
| |
cancelable:Boolean (default = false ) — Specifies whether the behavior
associated with the event can be prevented.
| |
originalEvent:Event (default = null ) — Event that originally triggered AsyncEvent.
|
clone | () | method |
override public function clone():Event
Called by the framework to facilitate any requisite event bubbling
ReturnsEvent |