Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ProfileLastAction.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ProfileLastAction.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ProfileLastAction.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ProfileLastAction.java
index 9e1c56ea9..fcb010d7c 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ProfileLastAction.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ProfileLastAction.java
@@ -32,6 +32,7 @@ public class ProfileLastAction extends RelaunchLastAction {
/* (non-Javadoc)
* @see org.eclipse.debug.ui.actions.RelaunchLastAction#getMode()
*/
+ @Override
public String getMode() {
return ILaunchManager.PROFILE_MODE;
}
@@ -39,6 +40,7 @@ public class ProfileLastAction extends RelaunchLastAction {
/* (non-Javadoc)
* @see org.eclipse.debug.internal.ui.actions.RelaunchLastAction#getLaunchGroupId()
*/
+ @Override
public String getLaunchGroupId() {
return IDebugUIConstants.ID_PROFILE_LAUNCH_GROUP;
}
@@ -46,6 +48,7 @@ public class ProfileLastAction extends RelaunchLastAction {
/* (non-Javadoc)
* @see org.eclipse.debug.ui.actions.RelaunchLastAction#getText()
*/
+ @Override
protected String getText() {
if(LaunchingResourceManager.isContextLaunchEnabled()) {
return ActionMessages.ProfileLastAction_1;
@@ -58,6 +61,7 @@ public class ProfileLastAction extends RelaunchLastAction {
/* (non-Javadoc)
* @see org.eclipse.debug.ui.actions.RelaunchLastAction#getTooltipText()
*/
+ @Override
protected String getTooltipText() {
return IInternalDebugCoreConstants.EMPTY_STRING;
}
@@ -65,6 +69,7 @@ public class ProfileLastAction extends RelaunchLastAction {
/* (non-Javadoc)
* @see org.eclipse.debug.internal.ui.actions.RelaunchLastAction#getCommandId()
*/
+ @Override
protected String getCommandId() {
return "org.eclipse.debug.ui.commands.ProfileLast"; //$NON-NLS-1$
}
@@ -72,6 +77,7 @@ public class ProfileLastAction extends RelaunchLastAction {
/* (non-Javadoc)
* @see org.eclipse.debug.internal.ui.actions.RelaunchLastAction#getDescription()
*/
+ @Override
protected String getDescription() {
if(LaunchingResourceManager.isContextLaunchEnabled()) {
return ActionMessages.ProfileLastAction_2;

Back to the top