diff options
author | Rüdiger Timm <rt@openoffice.org> | 2003-04-23 16:02:52 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2003-04-23 16:02:52 +0000 |
commit | b97e1912628eb4e7760781572d34ed508caf7c03 (patch) | |
tree | e656bfcda924ac3de1eed58fbd9a0f87ce0f4eca /udkapi | |
parent | 1573789b92d6b968730157273f35f009b12cca8a (diff) |
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
Diffstat (limited to 'udkapi')
-rw-r--r-- | udkapi/com/sun/star/java/XJavaVM.idl | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/udkapi/com/sun/star/java/XJavaVM.idl b/udkapi/com/sun/star/java/XJavaVM.idl index b32f7677e80b..9e96ff7b9d8c 100644 --- a/udkapi/com/sun/star/java/XJavaVM.idl +++ b/udkapi/com/sun/star/java/XJavaVM.idl @@ -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 ); |