/************************************************************************* * * $RCSfile: XJavaVM.idl,v $ * * $Revision: 1.12 $ * * last change: $Author: hr $ $Date: 2003-03-27 17:35:39 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses * * - GNU Lesser General Public License Version 2.1 * - Sun Industry Standards Source License Version 1.1 * * Sun Microsystems Inc., October, 2000 * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2000 by Sun Microsystems, Inc. * 901 San Antonio Road, Palo Alto, CA 94303, USA * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * * Sun Industry Standards Source License Version 1.1 * ================================================= * The contents of this file are subject to the Sun Industry Standards * Source License Version 1.1 (the "License"); You may not use this file * except in compliance with the License. You may obtain a copy of the * License at http://www.openoffice.org/license.html. * * Software provided under this License is provided on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. * See the License for the specific provisions governing your rights and * obligations concerning the Software. * * The Initial Developer of the Original Code is: Sun Microsystems, Inc. * * Copyright: 2000 by Sun Microsystems, Inc. * * All Rights Reserved. * * Contributor(s): _______________________________________ * * ************************************************************************/ #ifndef __com_sun_star_java_XJavaVM_idl__ #define __com_sun_star_java_XJavaVM_idl__ #ifndef __com_sun_star_uno_XInterface_idl__ #include #endif #ifndef __com_sun_star_uno_Uik_idl__ #include #endif //============================================================================= module com { module sun { module star { module java { //============================================================================= // DocMerge from xml: interface com::sun::star::java::XJavaVM /** must be implemented by the user of the XJavaVM. @incomplete */ interface XJavaVM: com::sun::star::uno::XInterface { //------------------------------------------------------------------------- // DocMerge from xml: method com::sun::star::java::XJavaVM::getJavaVM /** returns the address of the Java Virtual Machine.

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

If the processID is a normal 16-byte ID, the returned any contains a JNI JavaVM pointer as a long or hyper integer (depending on the platform). If the processID does not match the current process, an empty any is returned.

If the processID has an additional 17th byte of value zero, the returned any contains a non-reference-counted pointer to a (reference-counted) instance of the C++ jvmaccess::VirtualMachine class, always represented as a hyper integer. The pointer is guaranteed to be valid as long as the reference to this XJavaVM is valid (but the pointer should be converted into a reference-counted reference as soon as possible). Again, if the first 16 bytes of the processID do not match the current process, an empty any is returned.

The first form (returning a JNI JavaVM pointer) is mainly for backwards compatibility, new code should use the second form (returning a pointer to a jvmaccess::VirtualMachine). For example, one advantage of using jvmaccess::VirtualMachine instead of the raw JavaVM pointer is that whenever you attach a native thread to the Java virtual machine, that thread's context ClassLoader (see java.lang.Thread.getContextClassLoader) will automatically be set to a meaningful value.

*/ any getJavaVM( [in] sequence processID ); //------------------------------------------------------------------------- // DocMerge from xml: method com::sun::star::java::XJavaVM::isVMStarted /** returns if the VM is started successfully, otherwise . */ boolean isVMStarted(); //------------------------------------------------------------------------- // DocMerge from xml: method com::sun::star::java::XJavaVM::isVMEnabled /** Returns if the VM is enabled.

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

*/ boolean isVMEnabled(); }; //============================================================================= }; }; }; }; /*============================================================================= =============================================================================*/ #endif