Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVeronika Irvine2003-03-27 17:39:11 +0000
committerVeronika Irvine2003-03-27 17:39:11 +0000
commitf7c3c00ab04c95516dadc4e8b2b99696003436f3 (patch)
tree7bca90f1c6c0a4f7893d99fb8a24dbeff775ce83
parent0d5a2b9f2416f2c745ad9534143fee19a4e16533 (diff)
downloadeclipse.platform.swt-f7c3c00ab04c95516dadc4e8b2b99696003436f3.tar.gz
eclipse.platform.swt-f7c3c00ab04c95516dadc4e8b2b99696003436f3.tar.xz
eclipse.platform.swt-f7c3c00ab04c95516dadc4e8b2b99696003436f3.zip
javadoc correctionsv2133h
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java12
1 files changed, 5 insertions, 7 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java
index 143b603bf4..18fc637809 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java
@@ -938,9 +938,7 @@ public void setForeground (Color color) {
if (arrow != null) arrow.setForeground(color);
}
/**
-* Sets the text of an item.
-* <p>
-* Indexing is zero based.
+* Sets the text of an item; indexing is zero based.
*
* This operation will fail when the index is out
* of range or an item could not be changed in
@@ -965,7 +963,7 @@ public void setItem (int index, String string) {
}
/**
* Sets all items.
-* <p>
+*
* @param items the array of items
*
* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
@@ -986,7 +984,7 @@ public void setItems (String [] items) {
}
/**
* Sets the new selection.
-* <p>
+*
* @param selection point representing the start and the end of the new selection
*
* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
@@ -1003,8 +1001,8 @@ public void setSelection (Point selection) {
}
/**
-* Sets the widget text
-* <p>
+* Sets the widget text.
+*
* @param string the widget text
*
* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)

Back to the top