Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

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

interface XJavaVM

Base Interface
com::sun::star::uno::XInterface

Description
must be implemented by the user of the XJavaVM.


Known Services which Export this Interface

com::sun::star::java::JavaVirtualMachine exports interfaces to handle a JavaVM and Java threads.
com::sun::star::java::JavaVirtualMashine
com::sun::star::java::JavaVirtualMachine exports interfaces to handle a JavaVM and Java threads.
com::sun::star::java::JavaVirtualMashine

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