Packageorg.swizframework.reflection
Classpublic class MethodParameter
InheritanceMethodParameter Inheritance Object

Representation of a method parameter.



Public Properties
 PropertyDefined By
  index : int
Index of this parameter in method signature.
MethodParameter
  optional : Boolean
Flag indicating whether or not this parameter is optional.
MethodParameter
  type : Class
Type of this parameter.
MethodParameter
Public Methods
 MethodDefined By
  
MethodParameter(index:int, type:Class, optional:Boolean)
Constructor sets initial values of required parameters.
MethodParameter
Property Detail
indexproperty
public var index:int

Index of this parameter in method signature.

optionalproperty 
public var optional:Boolean

Flag indicating whether or not this parameter is optional.

typeproperty 
public var type:Class

Type of this parameter. Null if typed as .

Constructor Detail
MethodParameter()Constructor
public function MethodParameter(index:int, type:Class, optional:Boolean)

Constructor sets initial values of required parameters.

Parameters
index:int
 
type:Class
 
optional:Boolean