Packagesystem.reflection
Interfacepublic interface MethodInfo

This interface defines the method information tool objects.



Public Properties
 PropertyDefined By
  arguments : Array
[read-only] Indicates the Array representation of all arguments passed-in the method.
MethodInfo
  name : String
[read-only] Indicates the name of the method.
MethodInfo
  returnType : String
[read-only] Indicates the String representation of the return type of the method.
MethodInfo
Public Methods
 MethodDefined By
  
isVoid():Boolean
Indicates if the method returns nothing.
MethodInfo
Property Detail
argumentsproperty
arguments:Array  [read-only]

Indicates the Array representation of all arguments passed-in the method.


Implementation
    public function get arguments():Array
nameproperty 
name:String  [read-only]

Indicates the name of the method.


Implementation
    public function get name():String
returnTypeproperty 
returnType:String  [read-only]

Indicates the String representation of the return type of the method.


Implementation
    public function get returnType():String
Method Detail
isVoid()method
public function isVoid():Boolean

Indicates if the method returns nothing.

Returns
Boolean