diff options
author | Jared Burns | 2003-09-10 18:21:31 +0000 |
---|---|---|
committer | Jared Burns | 2003-09-10 18:21:31 +0000 |
commit | 90dbc2a1f9bcfe76b71018dc2bb31f8c4f272efd (patch) | |
tree | 851f37e83a8e6acbe0022133022fe679d0eb5ebb /org.eclipse.debug.ui | |
parent | 6ebe95939d6ac94553998c4d269d5f9eab34224f (diff) | |
download | eclipse.platform.debug-90dbc2a1f9bcfe76b71018dc2bb31f8c4f272efd.tar.gz eclipse.platform.debug-90dbc2a1f9bcfe76b71018dc2bb31f8c4f272efd.tar.xz eclipse.platform.debug-90dbc2a1f9bcfe76b71018dc2bb31f8c4f272efd.zip |
Bug 42877 - Clean up Launch in Background / Run in Background
Diffstat (limited to 'org.eclipse.debug.ui')
-rw-r--r-- | org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java index 423e38b63..802b147f3 100644 --- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java +++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java @@ -203,7 +203,7 @@ public class CommonTab extends AbstractLaunchConfigurationTab { }); createVerticalSpacer(comp, 1); - createRunInBackgroundComponent(comp); + createLaunchInBackgroundComponent(comp); } /** @@ -212,7 +212,7 @@ public class CommonTab extends AbstractLaunchConfigurationTab { * * @param parent the composite to create the controls in */ - protected void createRunInBackgroundComponent(Composite parent) { + protected void createLaunchInBackgroundComponent(Composite parent) { fLaunchInBackgroundButton = new Button(parent, SWT.CHECK); fLaunchInBackgroundButton.setText(LaunchConfigurationsMessages.getString("CommonTab.10")); //$NON-NLS-1$ GridData data = new GridData(GridData.HORIZONTAL_ALIGN_FILL); @@ -325,18 +325,18 @@ public class CommonTab extends AbstractLaunchConfigurationTab { updateLocalSharedFromConfig(configuration); updateSharedLocationFromConfig(configuration); updateFavoritesFromConfig(configuration); - updateRunInBackground(configuration); + updateLaunchInBackground(configuration); } - protected void updateRunInBackground(ILaunchConfiguration configuration) { + protected void updateLaunchInBackground(ILaunchConfiguration configuration) { fLaunchInBackgroundButton.setSelection(isLaunchInBackground(configuration)); } /** - * Returns whether the given configuration should be run in the background. + * Returns whether the given configuration should be launched in the background. * * @param configuration the configuration - * @return whether the configuration is configured to run in the background + * @return whether the configuration is configured to launch in the background */ public static boolean isLaunchInBackground(ILaunchConfiguration configuration) { boolean launchInBackground= true; |