interface XJavaVM in module com::sun::star::java::

(Global Index)

Syntax

interface XJavaVM : com::sun::star::uno::XInterface ;

Description

must be implemented by the user of the XJavaVM.

Method 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.

Method Details



getJavaVM

Syntax

any getJavaVM (
sequence< byte > processID );

Description

returns the address of the Java Virtual Machine.

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


isVMStarted

Syntax

boolean isVMStarted ();

Description

returns true> if the VM is started successfully otherwise false .


isVMEnabled

Syntax

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