| Creates a new Function object from a function in this class |
| Declaration: |
| function getFunction( string name ) |
| Description: |
| This function creates a new Function object which is associated with the specified method of the class associated with this "Class" object. |
| Parameters: |
| Parameter #1: string name - The name of the method |
| Returns: |
| A new Function object, or null on failure |
| Example: |
namespace Test {
number id;
static function test( number n )
.id = n;
}
object o = new Namespace(Test);
object f = o.getFunction('test');
|