INTEGRATION: CWS uno2 (1.10.26); FILE MERGED

2003/04/03 13:11:00 jl 1.10.26.1: #i12929# getJavaVM does not throw RuntimeExceptions (and derived). Instead void any is returned
This commit is contained in:
Rüdiger Timm 2003-04-23 16:02:52 +00:00
parent 1573789b92
commit b97e191262

View file

@ -2,9 +2,9 @@
*
* $RCSfile: XJavaVM.idl,v $
*
* $Revision: 1.12 $
* $Revision: 1.13 $
*
* last change: $Author: hr $ $Date: 2003-03-27 17:35:39 $
* last change: $Author: rt $ $Date: 2003-04-23 17:02:52 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -116,6 +116,19 @@ interface XJavaVM: com::sun::star::uno::XInterface
context <code>ClassLoader</code> (see
<code>java.lang.Thread.getContextClassLoader</code>) will automatically
be set to a meaningful value.</p>
If the instantiation of the Java Virtual Machine was successfull then
the returned any contains a long value on a 32 bit platform and a hyper
value on a 64 bit platform. The values can be cast to a JavaVM pointer.
If the JVM could not be created for whatever reason then a void any
will be returned.
@param processID
The process ID of the caller's process.
@return
On success, a JavaVM pointer as long or hyper, otherwise the any
is void.
*/
any getJavaVM( [in] sequence<byte> processID );