mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Bug 309128.
This commit is contained in:
parent
3807560d76
commit
c58a08aaad
2 changed files with 17 additions and 1 deletions
|
@ -74,6 +74,14 @@ import org.eclipse.debug.ui.RefreshTab;
|
||||||
import com.ibm.icu.text.DateFormat;
|
import com.ibm.icu.text.DateFormat;
|
||||||
import com.ibm.icu.text.MessageFormat;
|
import com.ibm.icu.text.MessageFormat;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* AbstractCLaunchDelegate is the launch delegate used by most CDI based debuggers.
|
||||||
|
* It has been superseded by AbstractCLaunchDelegate2 which is used by most DSF based
|
||||||
|
* debuggers. AbstractCLaunchDelegate has been left unmodified because it is commonly
|
||||||
|
* used by CDT clients and contains lots of obscure code created long ago to handle
|
||||||
|
* issues whose relevance is unclear today.
|
||||||
|
*
|
||||||
|
*/
|
||||||
abstract public class AbstractCLaunchDelegate extends LaunchConfigurationDelegate {
|
abstract public class AbstractCLaunchDelegate extends LaunchConfigurationDelegate {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -37,7 +37,15 @@ import org.eclipse.debug.core.ILaunchConfiguration;
|
||||||
import org.eclipse.debug.core.model.LaunchConfigurationDelegate;
|
import org.eclipse.debug.core.model.LaunchConfigurationDelegate;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Ken Ryall
|
* AbstractCLaunchDelegate2 is used by most DSF based debuggers. It replaces AbstractCLaunchDelegate
|
||||||
|
* which is the launch delegate used by most CDI based debuggers.
|
||||||
|
*
|
||||||
|
* While it is technically possible to merge the two, AbstractCLaunchDelegate has been left
|
||||||
|
* unmodified because it is commonly used by CDT clients and contains lots of obscure code
|
||||||
|
* created long ago to handle issues whose relevance is unclear today.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
/**
|
||||||
* @since 6.1
|
* @since 6.1
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue