
org.eclipse.debug.ui.actions.RunAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.eclipse.debug.ui Show documentation
Show all versions of org.eclipse.debug.ui Show documentation
This is org.eclipse.debug.ui jar used by Scout SDK
The newest version!
/*******************************************************************************
* Copyright (c) 2000, 2008 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
*******************************************************************************/
package org.eclipse.debug.ui.actions;
import org.eclipse.debug.core.ILaunchManager;
import org.eclipse.debug.internal.ui.actions.ExecutionAction;
import org.eclipse.debug.ui.IDebugUIConstants;
/**
* Action to launch the last launch configuration that was successfully
* launched, in run mode. If no configurations have been launched, the launch
* configuration dialog is opened.
*
*
* This class may be instantiated.
*
* @since 2.0
*/
public final class RunAction extends ExecutionAction {
public RunAction() {
super(IDebugUIConstants.ID_RUN_LAUNCH_GROUP);
}
/**
* @see ExecutionAction#getMode()
*/
@Override
protected String getMode() {
return ILaunchManager.RUN_MODE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy