Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2002-11-11 15:22:34 +0000
committerDarin Wright2002-11-11 15:22:34 +0000
commit2b3987f021d8c0fcf757514d0cd725b55326c9d4 (patch)
tree92d9e0d1197fc9a02113f201e7857481b9f80d96 /org.eclipse.debug.core/core/org/eclipse/debug/core/model
parent22209cedf4c4bab4a44931c153b39ff3aac6d00b (diff)
downloadeclipse.platform.debug-2b3987f021d8c0fcf757514d0cd725b55326c9d4.tar.gz
eclipse.platform.debug-2b3987f021d8c0fcf757514d0cd725b55326c9d4.tar.xz
eclipse.platform.debug-2b3987f021d8c0fcf757514d0cd725b55326c9d4.zip
bug 19623
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/model')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IProcess.java19
1 files changed, 15 insertions, 4 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IProcess.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IProcess.java
index 154b3ee67..36ab961b0 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IProcess.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IProcess.java
@@ -1,12 +1,15 @@
package org.eclipse.debug.core.model;
-/*
- * (c) Copyright IBM Corp. 2000, 2001.
- * All Rights Reserved.
- */
+/**********************************************************************
+Copyright (c) 2000, 2002 IBM Corp. All rights reserved.
+This file is made available under the terms of the Common Public License v1.0
+which accompanies this distribution, and is available at
+http://www.eclipse.org/legal/cpl-v10.html
+**********************************************************************/
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.debug.core.DebugException;
+import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.ILaunch;
/**
@@ -23,6 +26,14 @@ import org.eclipse.debug.core.ILaunch;
* @see org.eclipse.debug.core.DebugPlugin#newProcess(ILaunch, Process, String)
*/
public interface IProcess extends IAdaptable, ITerminate {
+
+ /**
+ * Attribute key for a common, optional, process property. The value of this
+ * attribute is the command line a process was launched with.
+ *
+ * @since 2.1
+ */
+ public final static String ATTR_CMDLINE= DebugPlugin.getUniqueIdentifier() + ".ATTR_CMDLINE"; //$NON-NLS-1$
/**
* Returns a human-readable label for this process.

Back to the top