|
|||||||||
Home >> All >> org >> eclipse >> debug >> [ ui overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: ![]() ![]() ![]() |
DETAIL: FIELD | CONSTR | METHOD |
org.eclipse.debug.ui
Interface ILaunchConfigurationDialog

- All Superinterfaces:
- org.eclipse.jface.operation.IRunnableContext
- public interface ILaunchConfigurationDialog
- extends org.eclipse.jface.operation.IRunnableContext
A launch configuration dialog is used to edit and launch launch configurations. It contains a launch configuration tab group.
Clients are not intended to implement this interface.
- Since:
- 2.0
Field Summary | |
static int |
LAUNCHED_BEFORE_OPENING
Deprecated. the launch dialog no longer supports launching without opening - this constant will never be returned by the dialog |
Method Summary | |
java.lang.String |
generateName(java.lang.String name)
Returns a unique launch configuration name, using the given name as a seed. |
ILaunchConfigurationTab |
getActiveTab()
Returns the currently active ILaunchConfigurationTab
being displayed, or null if there is none. |
java.lang.String |
getMode()
Returns the mode in which this dialog was opened - run or debug. |
ILaunchConfigurationTab[] |
getTabs()
Returns the tabs currently being displayed, or null if none. |
void |
setActiveTab(ILaunchConfigurationTab tab)
Sets the displayed tab to the given tab. |
void |
setActiveTab(int index)
Sets the displayed tab to the tab with the given index. |
void |
setName(java.lang.String name)
Sets the contents of the name field to the given name. |
void |
updateButtons()
Adjusts the enable state of this dialog's buttons to reflect the state of the active tab group. |
void |
updateMessage()
Updates the message (or error message) shown in the message line to reflect the state of the currently active tab in this launch configuration dialog. |
Methods inherited from interface org.eclipse.jface.operation.IRunnableContext |
run |
Field Detail |
LAUNCHED_BEFORE_OPENING
public static final int LAUNCHED_BEFORE_OPENING
- Deprecated. the launch dialog no longer supports launching without
opening - this constant will never be returned by the dialog
- Return value from
open()
method of a launch configuration dialog when a launch completed successfully with a single click (without opening a launch configuration dialog).- See Also:
- Constant Field Values
- Return value from
Method Detail |
updateButtons
public void updateButtons()
- Adjusts the enable state of this dialog's buttons
to reflect the state of the active tab group.
This may be called by to force a button state update.
updateMessage
public void updateMessage()
- Updates the message (or error message) shown in the message line to
reflect the state of the currently active tab in this launch
configuration dialog.
This method may be called to force a message update.
setName
public void setName(java.lang.String name)
- Sets the contents of the name field to the given name.
generateName
public java.lang.String generateName(java.lang.String name)
- Returns a unique launch configuration name, using the given name
as a seed.
getTabs
public ILaunchConfigurationTab[] getTabs()
- Returns the tabs currently being displayed, or
null
if none.
getActiveTab
public ILaunchConfigurationTab getActiveTab()
- Returns the currently active
ILaunchConfigurationTab
being displayed, ornull
if there is none.
getMode
public java.lang.String getMode()
- Returns the mode in which this dialog was opened -
run or debug.
setActiveTab
public void setActiveTab(ILaunchConfigurationTab tab)
- Sets the displayed tab to the given tab. Has no effect if the specified
tab is not one of the tabs being displayed in the dialog currently.
- Since:
- 2.1
setActiveTab
public void setActiveTab(int index)
- Sets the displayed tab to the tab with the given index. Has no effect if
the specified index is not within the limits of the tabs returned by
getTabs()
.- Since:
- 2.1
|
|||||||||
Home >> All >> org >> eclipse >> debug >> [ ui overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: ![]() ![]() ![]() |
DETAIL: FIELD | CONSTR | METHOD |