| Package | org.springextensions.actionscript.metadata |
| SVN browsing | IMetadataProcessor.as |
| Fisheye | IMetadataProcessor.as |
| Interface | public interface IMetadataProcessor |
| Implementors | AbstractMetadataProcessor |
| Property | Defined by | ||
|---|---|---|---|
| metadataNames : Array [read-only]
The names of the metadata annotations that the current
IMetadataProcessor processes. | IMetadataProcessor | ||
| processBeforeInitialization : Boolean [read-only]
If
true the IMetadataProcessor instance will be able to process the annotated
instance before it has been initialized by the container. | IMetadataProcessor | ||
| Method | Defined by | ||
|---|---|---|---|
|
process(instance:Object, container:IMetaDataContainer, metadataName:String, objectName:String):void
Processes the specified
Object. | IMetadataProcessor | ||
| metadataNames | property |
metadataNames:Array [read-only]
The names of the metadata annotations that the current IMetadataProcessor processes.
public function get metadataNames():Array
| processBeforeInitialization | property |
processBeforeInitialization:Boolean [read-only]
If true the IMetadataProcessor instance will be able to process the annotated
instance before it has been initialized by the container.
public function get processBeforeInitialization():Boolean
| process | () | method |
public function process(instance:Object, container:IMetaDataContainer, metadataName:String, objectName:String):void
Processes the specified Object. The IMetaDataContainer instance can be any of these
MetaDataContainer subclasses:
instance:Object — The specified Object.
|
|
container:IMetaDataContainer — The associated IMetaDataContainer
|
|
metadataName:String — The metadata name that triggered this invocation.
|
|
objectName:String — The name of the object definition in the Spring Actionscript container.
|