blob: 28beb0cb19124121ff9d7a9750b377b46439ed3b [file] [log] [blame]
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();
}
}