mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Bug 268520: Missing id for CoreFileDebuggerTab.
This commit is contained in:
parent
4250d67c92
commit
d6c767387c
1 changed files with 18 additions and 1 deletions
|
@ -35,6 +35,15 @@ import org.eclipse.swt.widgets.Composite;
|
||||||
|
|
||||||
public class CoreFileDebuggerTab extends AbstractCDebuggerTab {
|
public class CoreFileDebuggerTab extends AbstractCDebuggerTab {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tab identifier used for ordering of tabs added using the
|
||||||
|
* <code>org.eclipse.debug.ui.launchConfigurationTabs</code>
|
||||||
|
* extension point.
|
||||||
|
*
|
||||||
|
* @since 6.0
|
||||||
|
*/
|
||||||
|
public static final String TAB_ID = "org.eclipse.cdt.cdi.launch.coreTab"; //$NON-NLS-1$
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* (non-Javadoc)
|
* (non-Javadoc)
|
||||||
*
|
*
|
||||||
|
@ -90,6 +99,14 @@ public class CoreFileDebuggerTab extends AbstractCDebuggerTab {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see org.eclipse.debug.ui.AbstractLaunchConfigurationTab#getId()
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public String getId() {
|
||||||
|
return TAB_ID;
|
||||||
|
}
|
||||||
|
|
||||||
public void initializeFrom(ILaunchConfiguration config) {
|
public void initializeFrom(ILaunchConfiguration config) {
|
||||||
setInitializing(true);
|
setInitializing(true);
|
||||||
setLaunchConfiguration(config);
|
setLaunchConfiguration(config);
|
||||||
|
|
Loading…
Add table
Reference in a new issue