blob: 66f14d815766ba01d0929f01233f88c5c3ae3e99 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2007 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.internal.ui.actions;
import org.eclipse.debug.core.ILaunchManager;
import org.eclipse.debug.internal.core.IInternalDebugCoreConstants;
import org.eclipse.debug.internal.ui.contextlaunching.LaunchingResourceManager;
import org.eclipse.debug.ui.IDebugUIConstants;
/**
* Relaunches the last profile-mode launch
*
* This menu item appears in the main 'Run' menu
*
* @see RelaunchLastAction
* @see RunLastAction
* @see DebugLastAction
*
*/
public class ProfileLastAction extends RelaunchLastAction {
/**
* @see RelaunchLastAction#getMode()
*/
public String getMode() {
return ILaunchManager.PROFILE_MODE;
}
/**
* @see org.eclipse.debug.internal.ui.actions.LaunchDropDownAction#getLaunchGroupId()
*/
public String getLaunchGroupId() {
return IDebugUIConstants.ID_PROFILE_LAUNCH_GROUP;
}
/**
* @see org.eclipse.debug.internal.ui.actions.RelaunchLastAction#getText()
*/
protected String getText() {
if(LaunchingResourceManager.isContextLaunchEnabled()) {
return ActionMessages.ProfileLastAction_1;
}
else {
return ActionMessages.ProfileLastAction_0;
}
}
/**
* @see org.eclipse.debug.internal.ui.actions.RelaunchLastAction#getTooltipText()
*/
protected String getTooltipText() {
return IInternalDebugCoreConstants.EMPTY_STRING;
}
/* (non-Javadoc)
* @see org.eclipse.debug.internal.ui.actions.RelaunchLastAction#getCommandId()
*/
protected String getCommandId() {
return "org.eclipse.debug.ui.commands.ProfileLast"; //$NON-NLS-1$
}
/* (non-Javadoc)
* @see org.eclipse.debug.internal.ui.actions.RelaunchLastAction#getDescription()
*/
protected String getDescription() {
if(LaunchingResourceManager.isContextLaunchEnabled()) {
return ActionMessages.ProfileLastAction_2;
}
else {
return ActionMessages.ProfileLastAction_3;
}
}
}