From 20a3f2c29e1d6bada2326bd04dcead2e1ae22ad9 Mon Sep 17 00:00:00 2001 From: Carolyn MacLeod Date: Thu, 31 May 2007 20:34:20 +0000 Subject: After javadoc bash for 3.3 RC3 --- .../Eclipse SWT/gtk/org/eclipse/swt/widgets/Spinner.java | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Spinner.java') diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Spinner.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Spinner.java index 9115eb2f67..eb50c854d2 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Spinner.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Spinner.java @@ -22,11 +22,14 @@ import org.eclipse.swt.events.*; * objects that allow the user to enter and modify numeric * values. *

+ * Note that although this class is a subclass of Composite, + * it does not make sense to add children to it, or set a layout on it. + *

*

*
Styles:
*
READ_ONLY, WRAP
*
Events:
- *
Selection, Modify
+ *
Selection, Modify, Verify
*
*

* IMPORTANT: This class is not intended to be subclassed. @@ -102,7 +105,7 @@ public void addModifyListener (ModifyListener listener) { /** * Adds the listener to the collection of listeners who will - * be notified when the control is selected, by sending + * be notified when the control is selected by the user, by sending * it one of the messages defined in the SelectionListener * interface. *

@@ -110,7 +113,7 @@ public void addModifyListener (ModifyListener listener) { * widgetDefaultSelected is typically called when ENTER is pressed in a single-line text. *

* - * @param listener the listener which should be notified + * @param listener the listener which should be notified when the control is selected by the user * * @exception IllegalArgumentException