:: com :: sun :: star :: java ::

interface XJavaVM
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XJavaVM
Description
must be implemented by the user of the XJavaVM.

Methods' Summary
getJavaVM returns the address of the Java Virtual Machine.
isVMStarted returns true if the VM is started successfully, otherwise false .
isVMEnabled Returns true if the VM is enabled.
Methods' Details
getJavaVM
any
getJavaVM(
 
[in] sequence< byte >
 
processID );

Description
returns the address of the Java Virtual Machine.

If the VM is not already instantiated, it will be now.

isVMStarted
boolean
isVMStarted();
 
 

Description
returns true if the VM is started successfully, otherwise false .
isVMEnabled
boolean
isVMEnabled();
 
 

Description
Returns true if the VM is enabled.

It is only possible to get the VM, if this method return 0.

Top of Page