Class DevelServerLaunchConfigurationTab
- All Implemented Interfaces:
IValidationMessage
,org.eclipse.debug.core.IPrototypeAttributesLabelProvider
,org.eclipse.debug.ui.ILaunchConfigurationTab
,org.eclipse.debug.ui.ILaunchConfigurationTab2
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 life-cycle 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.
- Author:
- Christopher Mindus
Method Summary
Modifier and TypeMethodDescriptionvoid
createControl
(org.eclipse.swt.widgets.Composite parent) Creates the top level control for this launch configuration tab under the given parent composite.void
dispose()
Disposes of the instance.static File
Gets the default location of the iiziServer.org.eclipse.swt.graphics.Image
getImage()
Returns the image for this tab, ornull
if nonegetName()
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.static boolean
isConfigurationValid
(org.eclipse.debug.core.ILaunchConfiguration launchConfig) Returns whether this tab is in a valid state in the context of the specified launch configuration.protected boolean
isDirty()
Verifies for dirty.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
onValidate
(boolean isValid) Call to inform validity of all validators.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
setMessage
(String newMessage, int newType) Set the message for this page with an indication of what type of message it is.Methods inherited from class org.eclipse.debug.ui.AbstractLaunchConfigurationTab
activated, canSave, createCheckButton, createPushButton, createRadioButton, createSeparator, createUpdateJob, createVerticalSpacer, deactivated, getAttributeLabel, getAttributesLabelsForPrototype, getControl, getErrorMessage, getHelpContextId, getId, getLaunchConfigurationDialog, getLaunchManager, getMessage, getShell, getUpdateJobDelay, getWarningMessage, initializeAttributes, launched, scheduleUpdateJob, setAttribute, setControl, setDirty, setErrorMessage, setHelpContextId, setLaunchConfigurationDialog, setMessage, setWarningMessage, updateLaunchConfigurationDialog
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.eclipse.debug.ui.ILaunchConfigurationTab
OkToLeaveTab, postApply
Method Details
getDefaultServerDirectory
Gets the default location of the iiziServer.- Throws:
IOException
- For I/O errors.
dispose
public void dispose()Disposes of the instance.- Specified by:
dispose
in interfaceorg.eclipse.debug.ui.ILaunchConfigurationTab
- Overrides:
dispose
in classorg.eclipse.debug.ui.AbstractLaunchConfigurationTab
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.
- Specified by:
setDefaults
in interfaceorg.eclipse.debug.ui.ILaunchConfigurationTab
- Parameters:
configuration
- The launch configuration.
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, aftersetLaunchConfigurationDialog
is called.- Specified by:
createControl
in interfaceorg.eclipse.debug.ui.ILaunchConfigurationTab
- Parameters:
parent
- The parent composite.
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.- Specified by:
initializeFrom
in interfaceorg.eclipse.debug.ui.ILaunchConfigurationTab
- Parameters:
configuration
- Launch configuration.
performApply
public void performApply(org.eclipse.debug.core.ILaunchConfigurationWorkingCopy configuration) Copies values from this tab into the given launch configuration.- Specified by:
performApply
in interfaceorg.eclipse.debug.ui.ILaunchConfigurationTab
- Parameters:
configuration
- Launch configuration.
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.
- Specified by:
isValid
in interfaceorg.eclipse.debug.ui.ILaunchConfigurationTab
- Overrides:
isValid
in classorg.eclipse.debug.ui.AbstractLaunchConfigurationTab
- Parameters:
launchConfig
- Launch configuration which provides context for validating this tab. This value must not benull
.- Returns:
- whether this tab is in a valid state
getName
Returns the name of this tab.- Specified by:
getName
in interfaceorg.eclipse.debug.ui.ILaunchConfigurationTab
getImage
public org.eclipse.swt.graphics.Image getImage()Returns the image for this tab, ornull
if none- Specified by:
getImage
in interfaceorg.eclipse.debug.ui.ILaunchConfigurationTab
- Overrides:
getImage
in classorg.eclipse.debug.ui.AbstractLaunchConfigurationTab
setMessage
Set the message for this page with an indication of what type of message it is.The valid message types are one of
IMessageProvider.NONE
,IMessageProvider.INFORMATION
,IMessageProvider.WARNING
, orIMessageProvider.ERROR
.Note that for backward compatibility, a message of type
ERROR
is different than an error message (set usingsetErrorMessage
). An error message overrides the current message until the error message is cleared. This method replaces the current message and does not affect the error message.- Specified by:
setMessage
in interfaceIValidationMessage
- Parameters:
newMessage
- The message, ornull
to clear the message.newType
- The message type.
onValidate
public void onValidate(boolean isValid) Call to inform validity of all validators.- Specified by:
onValidate
in interfaceIValidationMessage
- Parameters:
isValid
- true if valid, false otherwise.
isDirty
protected boolean isDirty()Verifies for dirty.- Overrides:
isDirty
in classorg.eclipse.debug.ui.AbstractLaunchConfigurationTab
isConfigurationValid
public static boolean isConfigurationValid(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.
- Parameters:
launchConfig
- Launch configuration which provides context for validating this tab. This value must not benull
.- Returns:
- whether this tab is in a valid state