| Package | org.springextensions.actionscript.ioc.factory.config |
| SVN browsing | ObjectFactoryAwarePostProcessor.as |
| Fisheye | ObjectFactoryAwarePostProcessor.as |
| Class | public class ObjectFactoryAwarePostProcessor |
| Implements | IObjectPostProcessor |
IObjectContainerAware.
Documentation reference: injecting the object factory
| Method | Defined by | ||
|---|---|---|---|
|
ObjectFactoryAwarePostProcessor(objectFactory:IObjectFactory)
Constructs a new
ObjectFactoryAwarePostProcessor instance. | ObjectFactoryAwarePostProcessor | ||
|
postProcessAfterInitialization(object:*, objectName:String):*
This method is invoked right after the
IInitializingObject and initMethod logic
is invoked in the wiring pipeline. | ObjectFactoryAwarePostProcessor | ||
|
postProcessBeforeInitialization(object:*, objectName:String):*
If the specified object implements the
IObjectFactoryAware interface the objectFactory instance
will be injected. | ObjectFactoryAwarePostProcessor | ||
| ObjectFactoryAwarePostProcessor | () | constructor |
public function ObjectFactoryAwarePostProcessor(objectFactory:IObjectFactory)
Constructs a new ObjectFactoryAwarePostProcessor instance.
objectFactory:IObjectFactory — the IObjectFactory instance that will be injected into every IObjectContainerAware instance.
|
| postProcessAfterInitialization | () | method |
public function postProcessAfterInitialization(object:*, objectName:String):*
This method is invoked right after the IInitializingObject and initMethod logic
is invoked in the wiring pipeline.
object:* — The instance that is being configured by the object factory
|
|
objectName:String — The name of the object definition as found in the IObjectFactory's configuration
|
* |
| postProcessBeforeInitialization | () | method |
public function postProcessBeforeInitialization(object:*, objectName:String):*
If the specified object implements the IObjectFactoryAware interface the objectFactory instance
will be injected.
This method is invoked right before the IInitializingObject and initMethod logic
is invoked in the wiring pipeline.
object:* — The instance that is being configured by the object factory
|
|
objectName:String — The name of the object as found in the IObjectFactory's configuration
|
* |