Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Rennie2011-07-07 04:49:14 +0000
committerMichael Rennie2011-07-07 04:49:14 +0000
commit233d153fa8e4d9e3372107e3af495b26594c99b1 (patch)
treeeb9976cd89c115b35f15f350ce877c72bd3f6c81 /org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/AbstractSelectionActionDelegate.java
parentbbc6a13779b7a6542fa76a1b4d22effb2b017547 (diff)
downloadeclipse.platform.debug-233d153fa8e4d9e3372107e3af495b26594c99b1.tar.gz
eclipse.platform.debug-233d153fa8e4d9e3372107e3af495b26594c99b1.tar.xz
eclipse.platform.debug-233d153fa8e4d9e3372107e3af495b26594c99b1.zip
[nobug] fix Javadoc warnings and add API problem filters for known API usage problems
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/AbstractSelectionActionDelegate.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/AbstractSelectionActionDelegate.java11
1 files changed, 6 insertions, 5 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/AbstractSelectionActionDelegate.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/AbstractSelectionActionDelegate.java
index e77dca8c8..5008a7331 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/AbstractSelectionActionDelegate.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/AbstractSelectionActionDelegate.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2007 IBM Corporation and others.
+ * Copyright (c) 2000, 2011 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -31,8 +31,8 @@ import org.eclipse.ui.progress.IWorkbenchSiteProgressService;
*
* This class is intended to be extended by clients
*
- * @see {@link IViewActionDelegate}
- * @see {@link IActionDelegate2}
+ * @see IViewActionDelegate
+ * @see IActionDelegate2
*
*/
public abstract class AbstractSelectionActionDelegate implements IViewActionDelegate, IActionDelegate2 {
@@ -142,7 +142,7 @@ public abstract class AbstractSelectionActionDelegate implements IViewActionDele
/**
* Sets the most recent selection
*
- * @parm selection structured selection
+ * @param context structured selection
*/
private void setSelection(IStructuredSelection context) {
fSelection = context;
@@ -175,6 +175,7 @@ public abstract class AbstractSelectionActionDelegate implements IViewActionDele
/**
* Return whether the action should be enabled or not based on the given
* selection.
+ * @param selection the current selection
*
* @return true if the action should be enabled for the specified selection context
* false otherwise
@@ -220,7 +221,7 @@ public abstract class AbstractSelectionActionDelegate implements IViewActionDele
/**
* Schedules the given job with this action's progress service
*
- * @param job
+ * @param job the {@link Job} to schedule
*/
protected void schedule(Job job) {
if (fProgressService == null) {

Back to the top