1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-21 21:52:10 +02:00

Bug 517722: Mark as deprecated code related to Launch Group

Change-Id: I8d4b1dd3280011086a8e5b9652ecb7cdede81d52
This commit is contained in:
Jonah Graham 2017-06-05 12:46:05 +01:00
parent fa142ee04b
commit ad97076c4d
4 changed files with 11 additions and 0 deletions

View file

@ -16,6 +16,8 @@
sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator" sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator"
sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer"> sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer">
</launchDelegate> </launchDelegate>
<!-- Deprecated, See Bug 517722 -->
<launchDelegate <launchDelegate
delegate="org.eclipse.cdt.launch.internal.MultiLaunchConfigurationDelegate" delegate="org.eclipse.cdt.launch.internal.MultiLaunchConfigurationDelegate"
delegateDescription="%LaunchGroup.description" delegateDescription="%LaunchGroup.description"
@ -87,6 +89,7 @@
<extension <extension
point="org.eclipse.debug.core.launchConfigurationTypes"> point="org.eclipse.debug.core.launchConfigurationTypes">
<!-- Deprecated, See Bug 517722 -->
<launchConfigurationType <launchConfigurationType
id="org.eclipse.cdt.launch.launchGroup" id="org.eclipse.cdt.launch.launchGroup"
name="%LaunchGroup.name" name="%LaunchGroup.name"
@ -96,6 +99,7 @@
<extension <extension
point="org.eclipse.debug.ui.launchConfigurationTabGroups"> point="org.eclipse.debug.ui.launchConfigurationTabGroups">
<!-- Deprecated, See Bug 517722 -->
<launchConfigurationTabGroup <launchConfigurationTabGroup
class="org.eclipse.cdt.launch.internal.ui.MultiLaunchConfigurationTabGroup" class="org.eclipse.cdt.launch.internal.ui.MultiLaunchConfigurationTabGroup"
id="org.eclipse.cdt.launch.launchGroup.tabgroup" id="org.eclipse.cdt.launch.launchGroup.tabgroup"
@ -105,6 +109,7 @@
<extension <extension
point="org.eclipse.debug.ui.launchConfigurationTypeImages"> point="org.eclipse.debug.ui.launchConfigurationTypeImages">
<!-- Deprecated, See Bug 517722 -->
<launchConfigurationTypeImage <launchConfigurationTypeImage
icon="icons/obj16/exec_obj.gif" icon="icons/obj16/exec_obj.gif"
configTypeID="org.eclipse.cdt.launch.launchGroup" configTypeID="org.eclipse.cdt.launch.launchGroup"

View file

@ -49,7 +49,9 @@ import org.eclipse.ui.activities.WorkbenchActivityHelper;
/** /**
* Group Launch delegate. Launches each configuration in the user selected mode * Group Launch delegate. Launches each configuration in the user selected mode
* @deprecated See Bug 517722, Launch Groups are now part of Platform.
*/ */
@Deprecated
public class MultiLaunchConfigurationDelegate extends LaunchConfigurationDelegate implements public class MultiLaunchConfigurationDelegate extends LaunchConfigurationDelegate implements
ILaunchConfigurationDelegate2 { ILaunchConfigurationDelegate2 {
public static final String DEFAULT_MODE = "default"; //$NON-NLS-1$ public static final String DEFAULT_MODE = "default"; //$NON-NLS-1$

View file

@ -64,7 +64,9 @@ import org.eclipse.ui.dialogs.PatternFilter;
/** /**
* Dialog to select launch configuration(s) * Dialog to select launch configuration(s)
* @deprecated See Bug 517722, Launch Groups are now part of Platform.
*/ */
@Deprecated
public class MultiLaunchConfigurationSelectionDialog extends TitleAreaDialog implements ISelectionChangedListener { public class MultiLaunchConfigurationSelectionDialog extends TitleAreaDialog implements ISelectionChangedListener {
private ViewerFilter[] fFilters = null; private ViewerFilter[] fFilters = null;
private ISelection fSelection; private ISelection fSelection;

View file

@ -59,7 +59,9 @@ import org.eclipse.ui.PlatformUI;
/** /**
* Tab group for Launch Group. * Tab group for Launch Group.
* @deprecated See Bug 517722, Launch Groups are now part of Platform.
*/ */
@Deprecated
public class MultiLaunchConfigurationTabGroup extends AbstractLaunchConfigurationTabGroup { public class MultiLaunchConfigurationTabGroup extends AbstractLaunchConfigurationTabGroup {
static class ContentProvider implements IStructuredContentProvider, ITreeContentProvider { static class ContentProvider implements IStructuredContentProvider, ITreeContentProvider {
protected List<LaunchElement> input; protected List<LaunchElement> input;