blob: 97023dbdb8ab4ba5944cefaf57fd3080ce3a202a [file] [log] [blame]
package org.eclipse.debug.internal.ui.actions;
import org.eclipse.debug.core.ILaunchConfigurationType;
import org.eclipse.debug.core.ILaunchManager;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/**
* Opens the launch config dialog in run mode.
*/
public class OpenRunConfigurations extends OpenLaunchConfigurationsAction {
public OpenRunConfigurations() {
super();
}
public OpenRunConfigurations(ILaunchConfigurationType configType) {
super(configType);
}
/**
* @see OpenLaunchConfigurationsAction#getMode()
*/
protected String getMode() {
return ILaunchManager.RUN_MODE;
}
/**
* @see OpenLaunchConfigurationsAction#getLabelText()
*/
protected String getLabelText() {
return ActionMessages.getString("OpenRunConfigurations.Run..._1"); //$NON-NLS-1$
}
}