Procedures and functions
| getboolvalue |
Retrieve a boolean value held within a jvmobject
|
| getclass |
Query the class of the object referenced by the jvmobject
|
| getintvalue |
Retrieve an integer value held within a jvmobject
|
| getisnull |
Query whether the jvmobject contains a null object reference
|
| getrealvalue |
Retrieve a floating point value held within a jvmobject
|
| getstrvalue |
Retrieve a string value held within a jvmobject
|
| gettextvalue |
Retrieve a text value held within a jvmobject
|
| jvmattachthread |
Persistently attach the current thread to the Java virtual machine
|
| jvmcallint |
Call a public static int function in a Java class.
|
| jvmcallobj |
Call a public static String function in a Java class, returning the value into Mosel as a jvmobject value.
|
| jvmcallreal |
Call a public static double function in a Java class.
|
| jvmcallstr |
Call a public static String function in a Java class.
|
| jvmcalltext |
Call a public static String function in a Java class, returning the value into Mosel as a text value.
|
| jvmcallvoid |
Call a public static void function in a Java class.
|
| jvmdetachthread |
Detach the current thread from the Java virtual machine
|
| jvmgetexceptionclass |
If the last call to a Java method threw an exception, this function will return the exception class name ( java.io.FileNotFoundException). Otherwise, it will return an empty string.
|
| jvmgetexceptionmsg |
If the last call to a Java method threw an exception, this function will return the exception message string ( result of calling Exception.getMessage()). Otherwise, it will return an empty text.
|
| jvmsetcreationargs |
Set arguments to pass to the Java virtual machine at creation time.
|
| jvmstatus |
Return whether the last call to a Java method succeeded or threw an exception.
|
| setnull |
Clear any object reference held within the jvmobject.
|
| setvalue |
Set the object reference held within the jvmobject to wrap a basic value.
|
