Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Swanson2004-01-14 00:19:18 +0000
committerDarin Swanson2004-01-14 00:19:18 +0000
commit648ce674162f985d5dcb8e3b5b51320c2f377c1c (patch)
treeb24d1de78890cc3984d561cd6d30aaaadb72b28c /org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/ui
parent42904f3b75cafc3ae518fce3d983cb1970357d86 (diff)
downloadeclipse.platform.debug-648ce674162f985d5dcb8e3b5b51320c2f377c1c.tar.gz
eclipse.platform.debug-648ce674162f985d5dcb8e3b5b51320c2f377c1c.tar.xz
eclipse.platform.debug-648ce674162f985d5dcb8e3b5b51320c2f377c1c.zip
javadoc cleanup
Diffstat (limited to 'org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/ui')
-rw-r--r--org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/ui/TreeAndListGroup.java11
1 files changed, 3 insertions, 8 deletions
diff --git a/org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/ui/TreeAndListGroup.java b/org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/ui/TreeAndListGroup.java
index ca98fd6d3..5f295af63 100644
--- a/org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/ui/TreeAndListGroup.java
+++ b/org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/ui/TreeAndListGroup.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2003 IBM Corporation and others.
+ * Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
@@ -64,9 +64,6 @@ public class TreeAndListGroup implements ISelectionChangedListener {
* @param parent org.eclipse.swt.widgets.Composite
* @param style int
* @param rootObject java.lang.Object
- * @param childPropertyName java.lang.String
- * @param parentPropertyName java.lang.String
- * @param listPropertyName java.lang.String
* @param width int
* @param height int
* @param allowMultiselection Whether to allow multi-selection in the list viewer.
@@ -246,10 +243,8 @@ public class TreeAndListGroup implements ISelectionChangedListener {
treeViewer.setInput(root);
}
- /**
- * Handle the selection of an item in the tree viewer
- *
- * @param selection ISelection
+ /* (non-Javadoc)
+ * @see org.eclipse.jface.viewers.ISelectionChangedListener#selectionChanged(org.eclipse.jface.viewers.SelectionChangedEvent)
*/
public void selectionChanged(SelectionChangedEvent event) {
IStructuredSelection selection = (IStructuredSelection) event.getSelection();

Back to the top