Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Ryall2007-02-08 00:06:28 +0000
committerKen Ryall2007-02-08 00:06:28 +0000
commiteec83cfb6653627aa24b456e87145d25a0c47e9f (patch)
tree6de1a66180cf676b9df82677489c56fdea52586f /debug/org.eclipse.cdt.debug.core/cdi/org
parentc24e249051c06cfcef8a02bbb8986f01cdca9266 (diff)
downloadorg.eclipse.cdt-eec83cfb6653627aa24b456e87145d25a0c47e9f.tar.gz
org.eclipse.cdt-eec83cfb6653627aa24b456e87145d25a0c47e9f.tar.xz
org.eclipse.cdt-eec83cfb6653627aa24b456e87145d25a0c47e9f.zip
Fix bug 91771.
Diffstat (limited to 'debug/org.eclipse.cdt.debug.core/cdi/org')
-rw-r--r--debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDITarget2.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDITarget2.java b/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDITarget2.java
new file mode 100644
index 00000000000..df1ba61b163
--- /dev/null
+++ b/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDITarget2.java
@@ -0,0 +1,24 @@
+/*******************************************************************************
+ * Copyright (c) 2007 Nokia 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:
+ * Nokia - Initial API and implementation
+ *******************************************************************************/
+
+package org.eclipse.cdt.debug.core.cdi.model;
+
+import org.eclipse.cdt.debug.core.model.IGlobalVariableDescriptor;
+
+public interface ICDITarget2 extends ICDITarget {
+
+
+ /** Returns a list of global variables for the targeted process
+ * @return list of globals for the targeted process
+ */
+ IGlobalVariableDescriptor[] getGlobalVariables();
+
+}

Back to the top