Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNiraj Modi2019-05-29 10:52:41 +0000
committerNiraj Modi2019-05-29 10:52:41 +0000
commit2139fcf24bb7bfd3bc1540768411c68cbf73e172 (patch)
treeb520cf9070e684b47ef4cd1b4ba8728ee8000adb
parent92c389243c8f977d7690eb5746c93d52e9b79049 (diff)
downloadeclipse.platform.swt-2139fcf24bb7bfd3bc1540768411c68cbf73e172.tar.gz
eclipse.platform.swt-2139fcf24bb7bfd3bc1540768411c68cbf73e172.tar.xz
eclipse.platform.swt-2139fcf24bb7bfd3bc1540768411c68cbf73e172.zip
Bug 547676 - Do the Javadoc bash for 4.12
Change-Id: If151a615d084e0dba84bfdb4182c2ec6d4b83cfa Signed-off-by: Niraj Modi <niraj.modi@in.ibm.com>
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/IME.java1
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/IME.java1
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/List.java2
3 files changed, 3 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/IME.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/IME.java
index 36acea4740..ae0f3d32fb 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/IME.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/IME.java
@@ -156,6 +156,7 @@ NSRect firstRectForCharacterRange(long id, long sel, long range) {
/**
* Returns the offset of the caret from the start of the document.
+ * -1 means that there is currently no active composition.
* The caret is within the current composition.
*
* @return the caret offset
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/IME.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/IME.java
index e7ff12acdf..cbd41b1ab3 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/IME.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/IME.java
@@ -100,6 +100,7 @@ void createWidget () {
/**
* Returns the offset of the caret from the start of the document.
+ * -1 means that there is currently no active composition.
* The caret is within the current composition.
*
* @return the caret offset
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/List.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/List.java
index 11a1c48f47..08433b8107 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/List.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/List.java
@@ -1231,7 +1231,7 @@ public void remove (int [] indices) {
/**
* Removes all of the items from the receiver.
- *
+ *
* @exception SWTException <ul>
* <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>

Back to the top