| Package | org.springextensions.actionscript.ioc.autowire |
| SVN browsing | IAutowireProcessor.as |
| Fisheye | IAutowireProcessor.as |
| Interface | public interface IAutowireProcessor |
| Implementors | AbstractObjectFactory, DefaultAutowireProcessor |
| Method | Defined by | ||
|---|---|---|---|
|
autoWire(object:Object, objectDefinition:IObjectDefinition, objectName:String = null):void
Performs autowiring on the specified object instance, the specified
IObjectDefinition can optionally
be used to retrieve autowiring information from. | IAutowireProcessor | ||
|
preprocessObjectDefinition(objectDefinition:IObjectDefinition):void
Method that can be invoked by an Typically this method can be used to do some kind of constructor configuration. | IAutowireProcessor | ||
| autoWire | () | method |
public function autoWire(object:Object, objectDefinition:IObjectDefinition, objectName:String = null):void
Performs autowiring on the specified object instance, the specified IObjectDefinition can optionally
be used to retrieve autowiring information from.
object:Object — The instance that needs to be autowired.
|
|
objectDefinition:IObjectDefinition — The IObjectDefinition associated with the object that needs to be created.
|
|
objectName:String (default = null) — The name of the object as it is registered in a container.
|
| preprocessObjectDefinition | () | method |
public function preprocessObjectDefinition(objectDefinition:IObjectDefinition):void
Method that can be invoked by an IObjectFactory implementation for any type of pre-processing
of the IObjectDefinition associated with the object that needs to be created.
Typically this method can be used to do some kind of constructor configuration.
ParametersobjectDefinition:IObjectDefinition — The IObjectDefinition that describes the object that will be created.
|