1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 309128.

This commit is contained in:
Ken Ryall 2010-05-25 19:44:06 +00:00
parent 3807560d76
commit c58a08aaad
2 changed files with 17 additions and 1 deletions

View file

@ -74,6 +74,14 @@ import org.eclipse.debug.ui.RefreshTab;
import com.ibm.icu.text.DateFormat;
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 {
/**

View file

@ -37,7 +37,15 @@ import org.eclipse.debug.core.ILaunchConfiguration;
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
*
*/