summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTree.java
diff options
context:
space:
mode:
authorGrant Gayed <ggayed>2003-04-09 19:42:51 +0000
committerGrant Gayed <ggayed>2003-04-09 19:42:51 +0000
commit7fdf1ff63ba8d8891da4664385368a064221797e (patch)
tree07223b09633bbb0484ffa51cf971a8511c246e87 /bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTree.java
parent68a0df82c1a66214f9e595ea86ae7b9c06d94af0 (diff)
downloadeclipse.platform.swt-7fdf1ff63ba8d8891da4664385368a064221797e.tar.gz
eclipse.platform.swt-7fdf1ff63ba8d8891da4664385368a064221797e.tar.xz
eclipse.platform.swt-7fdf1ff63ba8d8891da4664385368a064221797e.zip
fix javadoc
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTree.java')
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTree.java12
1 files changed, 7 insertions, 5 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTree.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTree.java
index 4c8f74cd0f..4665147ce8 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTree.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTree.java
@@ -470,7 +470,7 @@ void onSelection(Event e) {
* @return the item at the given point
*
* @exception IllegalArgumentException <ul>
- * <li>ERROR_NULL_ARGUMENT - if the listener is null</li>
+ * <li>ERROR_NULL_ARGUMENT - if the point is null</li>
* </ul>
* @exception SWTException <ul>
* <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
@@ -606,10 +606,12 @@ void removeItem(TableTreeItem item) {
*
* @param listener the listener
*
- * @exception SWTError <ul>
- * <li>ERROR_THREAD_INVALID_ACCESS when called from the wrong thread
- * <li>ERROR_WIDGET_DISPOSED when the widget has been disposed
- * <li>ERROR_NULL_ARGUMENT when listener is null
+ * @exception IllegalArgumentException <ul>
+ * <li>ERROR_NULL_ARGUMENT - if the listener is null</li>
+ * </ul>
+ * @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>
* </ul>
*/
public void removeSelectionListener (SelectionListener listener) {