| Package | com.bourre.ioc.load |
| Interface | public interface ApplicationLoaderListener extends LoaderListener |
| Implementors | DefaultApplicationRunner, DisplayLoaderProxy |
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
All objects that want to listen to the loading of the application must implement this interface
.See also
| Method | Defined by | ||
|---|---|---|---|
|
Triggered when communication channels are created.
| ApplicationLoaderListener | ||
|
Triggered when application is ready.
| ApplicationLoaderListener | ||
|
Triggered when all methods defined in xml context are called on
their respective owner instance.
| ApplicationLoaderListener | ||
|
Triggered when objects are created.
| ApplicationLoaderListener | ||
|
Triggered when xml context is loaded and parsed.
| ApplicationLoaderListener | ||
|
Triggered when xml context starts loading.
| ApplicationLoaderListener | ||
|
Triggered when IOC process change his state.
| ApplicationLoaderListener | ||
![]() |
onLoadError(e:LoaderEvent):void
Triggered when an error occurs during loading
| LoaderListener | |
![]() |
onLoadInit(e:LoaderEvent):void
Triggered when loading is finished.
| LoaderListener | |
![]() |
onLoadProgress(e:LoaderEvent):void
Triggered during loading progession.
| LoaderListener | |
![]() |
onLoadStart(e:LoaderEvent):void
Triggered when loading starts.
| LoaderListener | |
![]() |
onLoadTimeOut(e:LoaderEvent):void
Triggered when the loading time causes a tiemout.
| LoaderListener | |
| onApplicationChannelsAssigned | () | method |
public function onApplicationChannelsAssigned(e:ApplicationLoaderEvent):void
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
Triggered when communication channels are created.
Parameterse:ApplicationLoaderEvent |
| onApplicationInit | () | method |
public function onApplicationInit(e:ApplicationLoaderEvent):void
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
Triggered when application is ready.
All is loaded, parsed, created and linked.
Depedencies are resolved
e:ApplicationLoaderEvent |
| onApplicationMethodsCalled | () | method |
public function onApplicationMethodsCalled(e:ApplicationLoaderEvent):void
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
Triggered when all methods defined in xml context are called on their respective owner instance.
Parameterse:ApplicationLoaderEvent |
| onApplicationObjectsBuilt | () | method |
public function onApplicationObjectsBuilt(e:ApplicationLoaderEvent):void
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
Triggered when objects are created.
Parameterse:ApplicationLoaderEvent |
| onApplicationParsed | () | method |
public function onApplicationParsed(e:ApplicationLoaderEvent):void
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
Triggered when xml context is loaded and parsed.
Parameterse:ApplicationLoaderEvent |
| onApplicationStart | () | method |
public function onApplicationStart(e:ApplicationLoaderEvent):void
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
Triggered when xml context starts loading.
Parameterse:ApplicationLoaderEvent |
| onApplicationState | () | method |
public function onApplicationState(e:ApplicationLoaderEvent):void
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
Triggered when IOC process change his state.
Retreives state value using : e.getApplicationState()
Possible values are :
e:ApplicationLoaderEvent |
See also