1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-13 19:25:38 +02:00

deprecated environment launch constant

This commit is contained in:
David Inglis 2004-10-25 17:42:14 +00:00
parent 20c3099076
commit 52e7f87d5e
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2004-10-25 David Inglis
Deprecated environment launch constent in favor of the constant provided by the debug.core.
* src/org/eclipse/cdt/debug/core/ICDTLaunchConfigurationConstants.java
2004-10-25 Alain Magloire 2004-10-25 Alain Magloire
Remove of the class ICDIExpressionManager. Remove of the class ICDIExpressionManager.
instead new clas ICDIExpressionManagegment that is on the ICDITarget instead new clas ICDIExpressionManagegment that is on the ICDITarget

View file

@ -50,12 +50,15 @@ public interface ICDTLaunchConfigurationConstants {
* Launch configuration attribute key. The value is a boolean specifying * Launch configuration attribute key. The value is a boolean specifying
* whether the current enviroment should be inherited when the application * whether the current enviroment should be inherited when the application
* is launched. * is launched.
* @deprecated - see ILaunchManager.ATTR_APPEND_ENVIRONMENT_VARIABLES
*/ */
public static final String ATTR_PROGRAM_ENVIROMENT_INHERIT = CDT_LAUNCH_ID + ".ENVIRONMENT_INHERIT"; //$NON-NLS-1$ public static final String ATTR_PROGRAM_ENVIROMENT_INHERIT = CDT_LAUNCH_ID + ".ENVIRONMENT_INHERIT"; //$NON-NLS-1$
/** /**
* Launch configuration attribute key. The value is a Map specifying the * Launch configuration attribute key. The value is a Map specifying the
* environment to use when launching a C/C++ application. * environment to use when launching a C/C++ application.
*
* @deprecated - see ILaunchManager.ATTR_ENVIRONMENT_VARIABLES
*/ */
public static final String ATTR_PROGRAM_ENVIROMENT_MAP = CDT_LAUNCH_ID + ".ENVIRONMENT_MAP"; //$NON-NLS-1$ public static final String ATTR_PROGRAM_ENVIROMENT_MAP = CDT_LAUNCH_ID + ".ENVIRONMENT_MAP"; //$NON-NLS-1$