Method
Represents a runtime method or function
Operations
GetClass
Returns the class associated with this method
method : public : GetClass() ~ Class
Return
Type | Description |
---|---|
Class | associated class |
GetName
Returns the name of the method
method : public : GetName() ~ String
Return
Type | Description |
---|---|
String | name of the method |
GetParameters
Returns an array of method parameters
method : public : GetParameters() ~ DataType[]
Return
Type | Description |
---|---|
DataType | array of method parameters |
GetReturn
Returns the method's return type
method : public : GetReturn() ~ DataType
Return
Type | Description |
---|---|
DataType | method's return type |