| Package | org.as3commons.reflect |
| Class | public class Constructor |
| Property | Defined by | ||
|---|---|---|---|
| declaringType : Type
[read-only]
Returns the declaring type of this Constructor.
| Constructor | ||
| parameters : Array [read-only]
Returns the parameters of this Constructor.
| Constructor | ||
| Method | Defined by | ||
|---|---|---|---|
|
Constructor(declaringType:Type, parameters:Array = null)
Creates a new Constructor object.
| Constructor | ||
|
hasNoArguments():Boolean
| Constructor | ||
| declaringType | property |
declaringType:Type [read-only]Returns the declaring type of this Constructor.
Implementation public function get declaringType():Type
| parameters | property |
parameters:Array [read-only]Returns the parameters of this Constructor.
Implementation public function get parameters():Array
| Constructor | () | constructor |
public function Constructor(declaringType:Type, parameters:Array = null)Creates a new Constructor object.
ParametersdeclaringType:Type — The Type declaring the constrcutor.
|
|
parameters:Array (default = null) — an Array of Parameter objects being the parameters of the constructor.
|
| hasNoArguments | () | method |
public function hasNoArguments():BooleanReturns
Boolean — true if the constructor has no arguments, false
otherwise.
|