Initializing help system before first use

jvmcallreal

jvmcallreal


Purpose
Call a public static double function in a Java class.
Synopsis
function jvmcallreal(qualifiedmethodname:string) : real
function jvmcallreal(qualifiedmethodname:string, ...) : real
Arguments
qualifiedmethodname 
The name of the method, including class and package name, e.g. "com.fico.examples.MathOperations.multiply"
... 
Following the method name, specify zero or more values to pass as arguments to the Java method.
Further information
1. mosjvm will look in the class for a method with the given argument types that is declared as returning a double. If such a method cannot be found, the model will terminate with a runtime error.
2. The types of value that may be passed as method arguments are discussed earlier in this guide.
3. If mosjvm has not yet loaded the Java Virtual Machine into the Mosel process, it will be loaded by this function. If Java cannot be found or an error occurs loading it, the model will terminate with a runtime error.
Related topics