From 0d2c752d7134f05c65787f4c49ec177dcc7ca88d Mon Sep 17 00:00:00 2001
From: Martin Oberhuber < martin.oberhuber@windriver.com>
Date: Thu, 10 Apr 2008 01:29:57 +0000
Subject: [PATCH] [226280][apidoc][wince] Provide better javadoc for
org.eclipse.tm.rapi.*
---
.../src/org/eclipse/tm/rapi/Rapi.java | 16 +++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)
diff --git a/wince/org.eclipse.tm.rapi/src/org/eclipse/tm/rapi/Rapi.java b/wince/org.eclipse.tm.rapi/src/org/eclipse/tm/rapi/Rapi.java
index 0652a319c11..ca820c601f8 100644
--- a/wince/org.eclipse.tm.rapi/src/org/eclipse/tm/rapi/Rapi.java
+++ b/wince/org.eclipse.tm.rapi/src/org/eclipse/tm/rapi/Rapi.java
@@ -86,8 +86,8 @@ public final class Rapi {
* value is platform dependent. On Win32 platforms this method is directly
* mapped to CoInitializeEx
.
*
- * @param init on Win32 it is either {@link Rapi#COINIT_APARTMENTTHREADED}
- * or {@link Rapi#COINIT_MULTITHREADED}
+ * @param init on Win32 it is either {@link #COINIT_APARTMENTTHREADED} or
+ * {@link #COINIT_MULTITHREADED}
* @return on Win32 this is the returned value from
* CoInitializeEx
*/
@@ -114,11 +114,13 @@ public final class Rapi {
public static final native void CoUninitialize();
/**
- * Sets the first element of the specified array with the address of a newly
- * instantiated IRAPIDesktop
native interface.
- * @param pIRAPIDesktop an array with one element
- * @return {@link Rapi#NOERROR} if the function succeeds; otherwise an error code
- */
+ * Sets the first element of the specified array with the address of a newly
+ * instantiated IRAPIDesktop
native interface.
+ *
+ * @param pIRAPIDesktop an array with one element
+ * @return {@link #NOERROR} if the function succeeds; otherwise an error
+ * code
+ */
final static native int CreateRapiDesktop(int[] pIRAPIDesktop);