|
|||||||||
| Home >> All >> org >> eclipse >> debug >> [ ui overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
org.eclipse.debug.ui
Interface ILaunchConfigurationTab

- All Known Implementing Classes:
- AbstractLaunchConfigurationTab
- public interface ILaunchConfigurationTab
A launch configuration tab is used to edit/view attributes of a specific type of launch configuration. Launch configurations are presented in a dialog, with a tab folder. Each tab manipulates one ore more attributes of a launch configuration.
A tab has the following lifecycle methods:
setLaunchConfigurationDialog(ILaunchConfigurationDialog)- this is the first method called on a tab after it is instantiated.initializeFrom(ILaunchConfiguration)- called when a launch configuration is selected to be displayed.activated(ILaunchConfigurationWorkingCopy)- called when a tab is entered.deactivated(ILaunchConfigurationWorkingCopy)- called when a tab is exited.performApply(ILaunchConfigurationWorkingCopy)- called when a tab is to write its values to a launch configuration.dispose()- the last method called on a tab, when it is to perform any required cleanup. Note that a tab can be disposed before its control has been created.
setDefaults(ILaunchConfigurationWorkingCopy)
can be called before a tab's controls are created.
The launch tab framework was originially designed to handle inter tab
communication by applying attributes from the active tab to a launch configuration
being edited, when a tab is exited, and by initializing a tab when activated.
In 3.0, the addition of the methods activated and deactivated
allow tabs to determine the appropriate course of action. The default implementation
in AbstractLaunchConfigurationTab is to call the old methods
(initializeFrom and performApply). Tabs should overeride
the new methods as required.
This interface is intended to be implemented by clients.
- Since:
- 2.0
| Method Summary | |
void |
activated(org.eclipse.debug.core.ILaunchConfigurationWorkingCopy workingCopy)
Notification that this tab has become the active tab in the launch configuration dialog. |
boolean |
canSave()
Returns whether this tab is in a state that allows the launch configuration whose values this tab is showing to be saved. |
void |
createControl(org.eclipse.swt.widgets.Composite parent)
Creates the top level control for this launch configuration tab under the given parent composite. |
void |
deactivated(org.eclipse.debug.core.ILaunchConfigurationWorkingCopy workingCopy)
Notification that this tab is no longer the active tab in the launch configuration dialog. |
void |
dispose()
Notifies this launch configuration tab that it has been disposed. |
org.eclipse.swt.widgets.Control |
getControl()
Returns the top level control for this tab. |
java.lang.String |
getErrorMessage()
Returns the current error message for this tab. |
org.eclipse.swt.graphics.Image |
getImage()
Returns the image for this tab, or null if none |
java.lang.String |
getMessage()
Returns the current message for this tab. |
java.lang.String |
getName()
Returns the name of this tab. |
void |
initializeFrom(org.eclipse.debug.core.ILaunchConfiguration configuration)
Initializes this tab's controls with values from the given launch configuration. |
boolean |
isValid(org.eclipse.debug.core.ILaunchConfiguration launchConfig)
Returns whether this tab is in a valid state in the context of the specified launch configuration. |
void |
launched(org.eclipse.debug.core.ILaunch launch)
Deprecated. As of R3.0, this method is no longer called by the launch framework. Since tabs do not exist when launching is performed elsewhere than the launch dialog, this method cannot be relied upon for launching functionality. |
void |
performApply(org.eclipse.debug.core.ILaunchConfigurationWorkingCopy configuration)
Copies values from this tab into the given launch configuration. |
void |
setDefaults(org.eclipse.debug.core.ILaunchConfigurationWorkingCopy configuration)
Initializes the given launch configuration with default values for this tab. |
void |
setLaunchConfigurationDialog(ILaunchConfigurationDialog dialog)
Sets the launch configuration dialog that hosts this tab. |
| Method Detail |
createControl
public void createControl(org.eclipse.swt.widgets.Composite parent)
- Creates the top level control for this launch configuration
tab under the given parent composite. This method is called once on
tab creation, after
setLaunchConfigurationDialogis called.Implementors are responsible for ensuring that the created control can be accessed via
getControl
getControl
public org.eclipse.swt.widgets.Control getControl()
- Returns the top level control for this tab.
May return
nullif the control has not been created yet.
setDefaults
public void setDefaults(org.eclipse.debug.core.ILaunchConfigurationWorkingCopy configuration)
- Initializes the given launch configuration with
default values for this tab. This method
is called when a new launch configuration is created
such that the configuration can be initialized with
meaningful values. This method may be called before this
tab's control is created.
initializeFrom
public void initializeFrom(org.eclipse.debug.core.ILaunchConfiguration configuration)
- Initializes this tab's controls with values from the given
launch configuration. This method is called when
a configuration is selected to view or edit, after this
tab's control has been created.
dispose
public void dispose()
- Notifies this launch configuration tab that it has
been disposed. Marks the end of this tab's lifecycle,
allowing this tab to perform any cleanup required.
performApply
public void performApply(org.eclipse.debug.core.ILaunchConfigurationWorkingCopy configuration)
- Copies values from this tab into the given
launch configuration.
getErrorMessage
public java.lang.String getErrorMessage()
- Returns the current error message for this tab.
May be
nullto indicate no error message.An error message should describe some error state, as opposed to a message which may simply provide instruction or information to the user.
getMessage
public java.lang.String getMessage()
- Returns the current message for this tab.
A message provides instruction or information to the user, as opposed to an error message which should describe some error state.
isValid
public boolean isValid(org.eclipse.debug.core.ILaunchConfiguration launchConfig)
- Returns whether this tab is in a valid state in the context of the specified launch configuration.
This information is typically used by the launch configuration dialog to decide when it is okay to launch.
canSave
public boolean canSave()
- Returns whether this tab is in a state that allows the launch configuration whose values
this tab is showing to be saved. This differs from
isValid()in thatcanSave()determines if this tab prevents the current launch configuration from being saved, whereasisValid()determines if this tab prevents the current launch configuration from being launched.This information is typically used by the launch configuration dialog to decide when it is okay to save a launch configuration.
setLaunchConfigurationDialog
public void setLaunchConfigurationDialog(ILaunchConfigurationDialog dialog)
- Sets the launch configuration dialog that hosts this tab.
This is the first method called on a launch configuration
tab, and marks the beginning of this tab's lifecycle.
launched
public void launched(org.eclipse.debug.core.ILaunch launch)
- Deprecated. As of R3.0, this method is no longer called by the launch
framework. Since tabs do not exist when launching is performed elsewhere
than the launch dialog, this method cannot be relied upon for launching
functionality.
- Notifies this tab that the specified configuration has been launched, resulting in the given launch. This method can be called when a tab's control does not exist, to support single-click launching.
- Notifies this tab that the specified configuration has been launched, resulting in the given launch. This method can be called when a tab's control does not exist, to support single-click launching.
getName
public java.lang.String getName()
- Returns the name of this tab.
getImage
public org.eclipse.swt.graphics.Image getImage()
- Returns the image for this tab, or
nullif none
activated
public void activated(org.eclipse.debug.core.ILaunchConfigurationWorkingCopy workingCopy)
- Notification that this tab has become the active tab in the launch
configuration dialog.
- Since:
- 3.0
deactivated
public void deactivated(org.eclipse.debug.core.ILaunchConfigurationWorkingCopy workingCopy)
- Notification that this tab is no longer the active tab in the launch
configuration dialog.
- Since:
- 3.0
|
|||||||||
| Home >> All >> org >> eclipse >> debug >> [ ui overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC