Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/OpenLaunchDialogAction.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/OpenLaunchDialogAction.java26
1 files changed, 13 insertions, 13 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/OpenLaunchDialogAction.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/OpenLaunchDialogAction.java
index 649542dfe..7cc212d90 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/OpenLaunchDialogAction.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/OpenLaunchDialogAction.java
@@ -48,11 +48,11 @@ public class OpenLaunchDialogAction extends Action implements IActionDelegate2,
* Launch group identifier
*/
private String fIdentifier;
-
+
/**
* Constructs an action that opens the launch configuration dialog in
* the context of the specified launch group.
- *
+ *
* @param identifier unique identifier of a launch group extension
*/
public OpenLaunchDialogAction(String identifier) {
@@ -65,7 +65,7 @@ public class OpenLaunchDialogAction extends Action implements IActionDelegate2,
}
PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IDebugHelpContextIds.OPEN_LAUNCH_CONFIGURATION_ACTION);
}
-
+
/**
* @see org.eclipse.jface.action.IAction#run()
*/
@@ -82,7 +82,7 @@ public class OpenLaunchDialogAction extends Action implements IActionDelegate2,
int result = DebugUITools.openLaunchConfigurationDialogOnGroup(DebugUIPlugin.getShell(), selection, fIdentifier);
notifyResult(result == Window.OK);
}
-
+
/* (non-Javadoc)
* @see org.eclipse.ui.IActionDelegate2#runWithEvent(org.eclipse.jface.action.IAction, org.eclipse.swt.widgets.Event)
*/
@@ -90,7 +90,7 @@ public class OpenLaunchDialogAction extends Action implements IActionDelegate2,
public void runWithEvent(IAction action, Event event) {
run();
}
-
+
/* (non-Javadoc)
* @see org.eclipse.ui.IActionDelegate#run(org.eclipse.jface.action.IAction)
*/
@@ -98,7 +98,7 @@ public class OpenLaunchDialogAction extends Action implements IActionDelegate2,
public void run(IAction action) {
run();
}
-
+
/**
* @see org.eclipse.ui.IWorkbenchWindowActionDelegate#dispose()
*/
@@ -114,11 +114,11 @@ public class OpenLaunchDialogAction extends Action implements IActionDelegate2,
action.setEnabled(existsConfigTypesForMode());
}
}
-
+
/**
* Return whether there are any registered launch configuration types for
* the mode of this action.
- *
+ *
* @return whether there are any registered launch configuration types for
* the mode of this action
*/
@@ -129,25 +129,25 @@ public class OpenLaunchDialogAction extends Action implements IActionDelegate2,
if (configType.supportsMode(getMode())) {
return true;
}
- }
+ }
return false;
}
-
+
/* (non-Javadoc)
* @see org.eclipse.ui.IWorkbenchWindowActionDelegate#init(org.eclipse.ui.IWorkbenchWindow)
*/
@Override
public void init(IWorkbenchWindow window) {}
-
+
/**
* @see org.eclipse.ui.IActionDelegate#selectionChanged(org.eclipse.jface.action.IAction, org.eclipse.jface.viewers.ISelection)
*/
@Override
public void selectionChanged(IAction action, ISelection selection) {}
-
+
/**
* Returns the launch mode for this action.
- *
+ *
* @return launch mode
*/
private String getMode() {

Back to the top