Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Swanson2002-01-21 22:09:46 +0000
committerDarin Swanson2002-01-21 22:09:46 +0000
commit934fd712b9edbb661608e7fe943864f42ef1b9bb (patch)
tree50bc4b67f890335b0939e3471adf635c188ab3f2
parent1b893f9aa75852f2c2afe63df1c478253f7395f2 (diff)
downloadeclipse.platform.debug-934fd712b9edbb661608e7fe943864f42ef1b9bb.tar.gz
eclipse.platform.debug-934fd712b9edbb661608e7fe943864f42ef1b9bb.tar.xz
eclipse.platform.debug-934fd712b9edbb661608e7fe943864f42ef1b9bb.zip
Javadoc changes
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/StepActionDelegate.java7
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/StepIntoActionDelegate.java6
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/StepOverActionDelegate.java6
3 files changed, 9 insertions, 10 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/StepActionDelegate.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/StepActionDelegate.java
index 0f865d30c..fbb723c4d 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/StepActionDelegate.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/StepActionDelegate.java
@@ -12,7 +12,7 @@ import org.eclipse.debug.core.model.IStep;
public abstract class StepActionDelegate extends ControlActionDelegate {
/**
- * @see ControlActionDelegate
+ * @see ControlActionDelegate#doAction(Object)
*/
public void doAction(Object object) throws DebugException {
IDebugElement element= (IDebugElement)object;
@@ -24,7 +24,7 @@ public abstract class StepActionDelegate extends ControlActionDelegate {
}
/**
- * @see ControlActionDelegate
+ * @see ControlActionDelegate#isEnabledFor(Object)
*/
public boolean isEnabledFor(Object element) {
if (element instanceof IStep) {
@@ -34,7 +34,7 @@ public abstract class StepActionDelegate extends ControlActionDelegate {
}
/**
- * @see ControlActionDelegate
+ * @see ControlActionDelegate#enableForMultiSelection()
*/
protected boolean enableForMultiSelection() {
return false;
@@ -52,5 +52,4 @@ public abstract class StepActionDelegate extends ControlActionDelegate {
* @exception DebugException if the action fails
*/
protected abstract void stepAction(IStep element) throws DebugException;
-
} \ No newline at end of file
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/StepIntoActionDelegate.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/StepIntoActionDelegate.java
index 5315567ec..6d9fc706d 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/StepIntoActionDelegate.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/StepIntoActionDelegate.java
@@ -16,14 +16,14 @@ import org.eclipse.jface.action.IAction;
public class StepIntoActionDelegate extends StepActionDelegate {
/**
- * @see StepActionDelegate
+ * @see StepActionDelegate#checkCapability(IStep)
*/
protected boolean checkCapability(IStep element) {
return element.canStepInto();
}
/**
- * @see StepActionDelegate
+ * @see StepActionDelegate#stepAction(IStep)
*/
protected void stepAction(IStep element) throws DebugException {
element.stepInto();
@@ -34,7 +34,7 @@ public class StepIntoActionDelegate extends StepActionDelegate {
}
/**
- * @see ControlActionDelegate
+ * @see ControlActionDelegate#setActionImages(IAction)
*/
protected void setActionImages(IAction action) {
action.setHoverImageDescriptor(DebugPluginImages.getImageDescriptor(IDebugUIConstants.IMG_LCL_STEPINTO));
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/StepOverActionDelegate.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/StepOverActionDelegate.java
index e8fa73a2a..87bff04ff 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/StepOverActionDelegate.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/StepOverActionDelegate.java
@@ -16,14 +16,14 @@ import org.eclipse.jface.action.IAction;
public class StepOverActionDelegate extends StepActionDelegate {
/**
- * @see StepActionDelegate
+ * @see StepActionDelegate#checkCapability(IStep)
*/
protected boolean checkCapability(IStep element) {
return element.canStepOver();
}
/**
- * @see StepActionDelegate
+ * @see StepActionDelegate#stepAction(IStep)
*/
protected void stepAction(IStep element) throws DebugException {
element.stepOver();
@@ -34,7 +34,7 @@ public class StepOverActionDelegate extends StepActionDelegate {
}
/**
- * @see ControlActionDelegate
+ * @see ControlActionDelegate#setActionImages(IAction)
*/
protected void setActionImages(IAction action) {
action.setHoverImageDescriptor(DebugPluginImages.getImageDescriptor(IDebugUIConstants.IMG_LCL_STEPOVER));

Back to the top