Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Rennie2012-04-25 15:41:37 +0000
committerMike Rennie2012-04-25 15:41:37 +0000
commit3985534ed1dc375b1f41b248aae6a63af40433bf (patch)
treed7067ba5e7f0e0759942890f1cab68db537f96c7
parent3c37ebb13cc4bf89f3ec7128ac4ad24ffbcaaaeb (diff)
downloadeclipse.platform.debug-3985534ed1dc375b1f41b248aae6a63af40433bf.tar.gz
eclipse.platform.debug-3985534ed1dc375b1f41b248aae6a63af40433bf.tar.xz
eclipse.platform.debug-3985534ed1dc375b1f41b248aae6a63af40433bf.zip
Bug 377584 - Keep old internal RelaunchLastActionv20120425-1541I20120427-1000I20120427-0800
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/RelaunchLastAction.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/RelaunchLastAction.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/RelaunchLastAction.java
new file mode 100644
index 000000000..785dbfa49
--- /dev/null
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/RelaunchLastAction.java
@@ -0,0 +1,32 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2012 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
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ * Wind River Systems - bug 227877
+ *******************************************************************************/
+package org.eclipse.debug.internal.ui.actions;
+
+
+import org.eclipse.debug.core.ILaunchConfiguration;
+import org.eclipse.debug.internal.ui.contextlaunching.ContextRunner;
+
+/**
+ * Re-launches the last launch.
+ *
+ * @see ContextRunner
+ * @see ILaunchConfiguration
+ * @see RunLastAction
+ * @see DebugLastAction
+ * @see ProfileLastAction
+ * @since 3.8
+ * @deprecated This class has been promoted to API as <code>org.eclipse.debug.ui.actions.RelaunchLastAction</code>. Clients
+ * should discontinue use of this class and use the new API version.
+ */
+public abstract class RelaunchLastAction extends org.eclipse.debug.ui.actions.RelaunchLastAction {
+
+}

Back to the top