summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabItem.java
diff options
context:
space:
mode:
authorCarolyn MacLeod <carolyn>2006-05-03 19:39:51 +0000
committerCarolyn MacLeod <carolyn>2006-05-03 19:39:51 +0000
commitd79eab99302156361be3efdbad9f0c456e32bf0a (patch)
treed15863213c938a5e826dd7a861a759c624582d9e /bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabItem.java
parent6668e3c7722f160d75069effdbbb9d5090a8d083 (diff)
downloadeclipse.platform.swt-d79eab99302156361be3efdbad9f0c456e32bf0a.tar.gz
eclipse.platform.swt-d79eab99302156361be3efdbad9f0c456e32bf0a.tar.xz
eclipse.platform.swt-d79eab99302156361be3efdbad9f0c456e32bf0a.zip
Javadoc basher output for 3.2RC3
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabItem.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabItem.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabItem.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabItem.java
index 95c9a73694..7d63ef46d5 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabItem.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabItem.java
@@ -88,11 +88,11 @@ public TabItem (TabFolder parent, int style) {
*
* @param parent a composite control which will be the parent of the new instance (cannot be null)
* @param style the style of control to construct
- * @param index the index to store the receiver in its parent
+ * @param index the zero-relative index to store the receiver in its parent
*
* @exception IllegalArgumentException <ul>
* <li>ERROR_NULL_ARGUMENT - if the parent is null</li>
- * <li>ERROR_INVALID_RANGE - if the index is either negative or greater than the parent's current tab count</li>
+ * <li>ERROR_INVALID_RANGE - if the index is not between 0 and the number of elements in the parent (inclusive)</li>
* </ul>
* @exception SWTException <ul>
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the parent</li>
@@ -287,14 +287,14 @@ void setOrientation () {
* the mnemonic character.
* </p>
* <p>
- * Mnemonics are indicated by an '&amp' that causes the next
+ * Mnemonics are indicated by an '&amp;' that causes the next
* character to be the mnemonic. When the user presses a
* key sequence that matches the mnemonic, a selection
* event occurs. On most platforms, the mnemonic appears
* underlined but may be emphasised in a platform specific
- * manner. The mnemonic indicator character '&amp' can be
+ * manner. The mnemonic indicator character '&amp;' can be
* escaped by doubling it in the string, causing a single
- *'&amp' to be displayed.
+ * '&amp;' to be displayed.
* </p>
*
* @param string the new text