1
0
Fork 0
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:
Mikhail Khodjaiants 2009-03-13 12:18:14 +00:00
parent 4250d67c92
commit d6c767387c

View file

@ -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 {