Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>If you type '<code>ALT+SHIFT+F1</code>' on an 'Create, manage and run configurations', the <a href="http://www.eclipse.org/pde/incubator/spy/" rel="noreferrer">plug-in Spy</a> will tell you it is a <a href="http://kickjava.com/src/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsDialog.java.htm" rel="noreferrer"><code>LaunchConfigurationsDialog</code></a></p> <p>A quick search in the Eclipse sources indicates it is created through an <a href="http://kickjava.com/src/org/eclipse/debug/ui/DebugUITools.java.htm#367" rel="noreferrer"><code>DebugUITools.openLaunchConfigurationDialogOnGroup()</code></a></p> <pre><code> final int[] result = new int[1]; Runnable JavaDoc r = new Runnable JavaDoc() { /** * @see java.lang.Runnable#run() */ public void run() { LaunchConfigurationsDialog dialog = (LaunchConfigurationsDialog) LaunchConfigurationsDialog.getCurrentlyVisibleLaunchConfigurationDialog(); if (dialog != null) { dialog.setInitialSelection(selection); dialog.doInitialTreeSelection(); if (status != null) { dialog.handleStatus(status); } result[0] = Window.OK; } else { dialog = new LaunchConfigurationsDialog(shell, DebugUIPlugin.getDefault().getLaunchConfigurationManager().getLaunchGroup(groupIdentifier)); dialog.setOpenMode(LaunchConfigurationsDialog.LAUNCH_CONFIGURATION_DIALOG_OPEN_ON_SELECTION); dialog.setInitialSelection(selection); dialog.setInitialStatus(status); result[0] = dialog.open(); } } }; BusyIndicator.showWhile(DebugUIPlugin.getStandardDisplay(), r); return result[0]; </code></pre> <p>That should give you enough material to get started.</p> <p><a href="http://help.eclipse.org/stable/topic/org.eclipse.platform.doc.isv/guide/images/lcd.png" rel="noreferrer">http://help.eclipse.org/stable/topic/org.eclipse.platform.doc.isv/guide/images/lcd.png</a></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload