Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 97023dbdb8ab4ba5944cefaf57fd3080ce3a202a (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
33
34
35
36
37
38
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$
	}

}

Back to the top