Packageorg.swizframework.reflection
Classpublic class MetadataHostMethod
InheritanceMetadataHostMethod Inheritance BaseMetadataHost Inheritance Object

Representation of a method that has been decorated with metadata.



Public Properties
 PropertyDefined By
 InheritedmetadataTags : Array
Array of metadata tags that decorate the property/method/class.
BaseMetadataHost
 Inheritedname : *
Name of the property/method/class.
BaseMetadataHost
  parameters : Array
[read-only]
MetadataHostMethod
  returnType : Class
MetadataHostMethod
 Inheritedtype : Class
Type of the property/method/class.
BaseMetadataHost
Protected Properties
 PropertyDefined By
 Inherited_metadataTags : Array
Backing variable for metadataTags getter/setter.
BaseMetadataHost
 Inherited_name : *
Backing variable for name getter/setter.
BaseMetadataHost
  _parameters : Array
Backing variable for parameters getter/setter.
MetadataHostMethod
  _returnType : Class
Backing variable for returnType getter/setter.
MetadataHostMethod
 Inherited_type : Class
Backing variable for type getter/setter.
BaseMetadataHost
Public Methods
 MethodDefined By
  
Constructor sets returnType property based on value found in hostNode XML node, as long as return type is not void or .
MetadataHostMethod
 Inherited
BaseMetadataHost
 Inherited
hasMetadataTagByName(name:String):Boolean
BaseMetadataHost
Property Detail
_parametersproperty
protected var _parameters:Array

Backing variable for parameters getter/setter.

_returnTypeproperty 
protected var _returnType:Class

Backing variable for returnType getter/setter.

parametersproperty 
parameters:Array  [read-only]


Implementation
    public function get parameters():Array
returnTypeproperty 
returnType:Class


Implementation
    public function get returnType():Class
    public function set returnType(value:Class):void
Constructor Detail
MetadataHostMethod()Constructor
public function MetadataHostMethod()

Constructor sets returnType property based on value found in hostNode XML node, as long as return type is not void or . Also populates parameters property from information found in hostNode XML node.