mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 09:46:02 +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 {
|
||||
|
||||
/**
|
||||
* 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)
|
||||
*
|
||||
|
@ -90,7 +99,15 @@ public class CoreFileDebuggerTab extends AbstractCDebuggerTab {
|
|||
}
|
||||
}
|
||||
|
||||
public void initializeFrom(ILaunchConfiguration config) {
|
||||
/* (non-Javadoc)
|
||||
* @see org.eclipse.debug.ui.AbstractLaunchConfigurationTab#getId()
|
||||
*/
|
||||
@Override
|
||||
public String getId() {
|
||||
return TAB_ID;
|
||||
}
|
||||
|
||||
public void initializeFrom(ILaunchConfiguration config) {
|
||||
setInitializing(true);
|
||||
setLaunchConfiguration(config);
|
||||
try {
|
||||
|
|
Loading…
Add table
Reference in a new issue