Packagepotomac.inject
Classpublic class InitializedEvent
InheritanceInitializedEvent Inheritance flash.events.Event

An InitializedEvent is dispatched by an [Injectable] which requires asynchronous initialization to inform the Potomac injection system that it's initialization is complete.



Public Methods
 MethodDefined By
  
InitializedEvent(type:String)
Constructs an InitializedEvent.
InitializedEvent
Public Constants
 ConstantDefined By
  INJECTABLE_INITIALIZED : String = injectableInitialized
[static] The InitializedEvent.INJECTABLE_INITIALIZED constant defines the value of the type property of the event object for a injectableInitialized event.
InitializedEvent
Constructor Detail
InitializedEvent()Constructor
public function InitializedEvent(type:String)

Constructs an InitializedEvent.

Parameters
type:String
Constant Detail
INJECTABLE_INITIALIZEDConstant
public static const INJECTABLE_INITIALIZED:String = injectableInitialized

The InitializedEvent.INJECTABLE_INITIALIZED constant defines the value of the type property of the event object for a injectableInitialized event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelablefalse
currentTargetThe Object that defines the event listener that handles the event. For example, if you use myButton.addEventListener() to register an event listener, myButton is the value of the currentTarget.