Java Experts Take Note:
NeXtMidas automatically converts the arguments for INVOKE and NEW from strings into objects. This creates a number of limitations:
  • If multiple methods have the same name the "wrong" one may be called (e.g. setFoo(int) and setFoo(String) when given 2)
  • It is not possible to use a null since it is treated as the string "null".
  • It is difficult to call a method that takes in an object array.