Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core.spawner/utils/org/eclipse/cdt/core/IProcessList.java')
-rw-r--r--core/org.eclipse.cdt.core.spawner/utils/org/eclipse/cdt/core/IProcessList.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.core.spawner/utils/org/eclipse/cdt/core/IProcessList.java b/core/org.eclipse.cdt.core.spawner/utils/org/eclipse/cdt/core/IProcessList.java
new file mode 100644
index 00000000000..fcc2897345a
--- /dev/null
+++ b/core/org.eclipse.cdt.core.spawner/utils/org/eclipse/cdt/core/IProcessList.java
@@ -0,0 +1,19 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2009 QNX Software Systems and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * QNX Software Systems - Initial API and implementation
+ *******************************************************************************/
+package org.eclipse.cdt.core;
+
+/**
+ * @noextend This interface is not intended to be extended by clients.
+ * @noimplement This interface is not intended to be implemented by clients.
+ */
+public interface IProcessList {
+ public IProcessInfo[] getProcessList();
+}

Back to the top