Invoke the native function with the given arguments, returning the native result as an Object.
(Class<?> returnType, Object[] inArgs)
| 306 | * native result as an Object. |
| 307 | */ |
| 308 | public Object invoke(Class<?> returnType, Object[] inArgs) { |
| 309 | return invoke(returnType, inArgs, this.options); |
| 310 | } |
| 311 | |
| 312 | /** Invoke the native function with the given arguments, returning the |
| 313 | * native result as an Object. |