Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
The ModuleManager class centrally manages dynamically loaded modules.
It maintains a mapping of URLs to modules.
A module can exist in a state where it is already loaded
(and ready for use), or in a not-loaded-yet state.
The ModuleManager dispatches events that indicate module status.
Clients can register event handlers and then call the
load()
method, which dispatches events when the factory is ready
(or immediately, if it was already loaded).
public static function getAssociatedFactory(object:Object):IFlexModuleFactory
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
See if the referenced object is associated with (or, in the managed
ApplicationDomain of) a known IFlexModuleFactory implementation.
Parameters
| object:Object — The object that the ModuleManager tries to create.
|
Returns | IFlexModuleFactory — Returns the IFlexModuleFactory implementation, or null
if the object type cannot be created from the factory.
|
public static function getModule(url:String):IModuleInfo
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Get the IModuleInfo interface associated with a particular URL.
There is no requirement that this URL successfully load,
but the ModuleManager returns a unique IModuleInfo handle for each unique URL.
Parameters
| url:String — A URL that represents the location of the module.
|
Returns | IModuleInfo — The IModuleInfo interface associated with a particular URL.
|
© 2009 Adobe Systems Incorporated. All rights reserved.
Sat Oct 3 2009, 04:15 AM -07:00