Packageorg.pranaframework.reflection
Classpublic class Variable
InheritanceVariable Inheritance Field Inheritance AbstractMember

A property defined with the var statement.



Public Properties
 PropertyDefined by
 InheriteddeclaringType : Type
AbstractMember
 InheritedisStatic : Boolean
AbstractMember
 Inheritedname : String
AbstractMember
 Inheritedtype : Type
AbstractMember
Public Methods
 MethodDefined by
  
Variable(name:String, type:Type, declaringType:Type, isStatic:Boolean)
Creates a new Variable object.
Variable
 Inherited
getValue(target:* = null):*
Returns the value of the field.
Field
Constructor detail
Variable()constructor
public function Variable(name:String, type:Type, declaringType:Type, isStatic:Boolean)

Creates a new Variable object.

Parameters
name:String — the name of the variable
 
type:Type — the data type of the variable
 
declaringType:Type — the type that declares the variable
 
isStatic:Boolean — whether or not this member is static (class member)