N Napier - 2010-05-03

Problem # 2 above was resolved by a correction of the *.txt file. Please ignore.

Additional issues:
(3) When calling the register method, the first argument to the method should be an integer instead of a double:

register(5, "Add one number"); // NPN 5.0 to 5

(4) When calling the invokeMethod, should cast the return code to Integer instead of int

(Integer) invokeMethod(sumMethod, mathfunctions, new int[]{5}); // NPN int to Integer