Skip to main content
summaryrefslogtreecommitdiffstats
blob: 28beb0cb19124121ff9d7a9750b377b46439ed3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package org.eclipse.debug.internal.ui;

/*
 * Licensed Materials - Property of IBM,
 * WebSphere Studio Workbench
 * (c) Copyright IBM Corp 2001
 */

import org.eclipse.debug.core.ILaunch;
import org.eclipse.debug.core.ILaunchManager;

public class DebugDropDownAction extends LaunchDropDownAction {

	public DebugDropDownAction() {
		super(new DebugAction());
	}

	/**
	 * @see LaunchDropDownAction
	 */
	public String getMode() {
		return ILaunchManager.DEBUG_MODE;
	}

	/**
	 * @see LaunchDropDownAction
	 */
	public ILaunch[] getHistory() {
		return DebugUIPlugin.getDefault().getDebugHistory();
	}
}

Back to the top