Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawel Piech2008-09-25 03:20:15 +0000
committerPawel Piech2008-09-25 03:20:15 +0000
commit6856eb8f9fea18057ccb49306160f6ecf563d429 (patch)
tree33868ad39addb26e9bd120bfe1c925121a892b01 /org.eclipse.debug.examples.core
parentb1129db4784956a69535c2a9849ef5be80b972a1 (diff)
downloadeclipse.platform.debug-6856eb8f9fea18057ccb49306160f6ecf563d429.tar.gz
eclipse.platform.debug-6856eb8f9fea18057ccb49306160f6ecf563d429.tar.xz
eclipse.platform.debug-6856eb8f9fea18057ccb49306160f6ecf563d429.zip
Bug 212316 - Allow multiple debuggers to create breakpoints using the same editor.
Diffstat (limited to 'org.eclipse.debug.examples.core')
-rw-r--r--org.eclipse.debug.examples.core/META-INF/MANIFEST.MF2
-rw-r--r--org.eclipse.debug.examples.core/src/org/eclipse/debug/examples/core/pda/model/PDAVariable.java5
2 files changed, 4 insertions, 3 deletions
diff --git a/org.eclipse.debug.examples.core/META-INF/MANIFEST.MF b/org.eclipse.debug.examples.core/META-INF/MANIFEST.MF
index 543fdb418..03f4944c1 100644
--- a/org.eclipse.debug.examples.core/META-INF/MANIFEST.MF
+++ b/org.eclipse.debug.examples.core/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Example Debug Core Plug-in
Bundle-SymbolicName: org.eclipse.debug.examples.core;singleton:=true
-Bundle-Version: 1.0.0
+Bundle-Version: 1.1.0
Bundle-Activator: org.eclipse.debug.examples.core.pda.DebugCorePlugin
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.core.resources,
diff --git a/org.eclipse.debug.examples.core/src/org/eclipse/debug/examples/core/pda/model/PDAVariable.java b/org.eclipse.debug.examples.core/src/org/eclipse/debug/examples/core/pda/model/PDAVariable.java
index c57a9d24a..b0ddd6433 100644
--- a/org.eclipse.debug.examples.core/src/org/eclipse/debug/examples/core/pda/model/PDAVariable.java
+++ b/org.eclipse.debug.examples.core/src/org/eclipse/debug/examples/core/pda/model/PDAVariable.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005, 2007 IBM Corporation and others.
+ * Copyright (c) 2005, 2008 IBM Corporation 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
@@ -8,6 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
* Bjorn Freeman-Benson - initial API and implementation
+ * Wind River Systems - added support for IToggleBreakpointsTargetFactory
*******************************************************************************/
package org.eclipse.debug.examples.core.pda.model;
@@ -100,7 +101,7 @@ public class PDAVariable extends PDADebugElement implements IVariable {
*
* @return the stack frame owning this variable
*/
- protected PDAStackFrame getStackFrame() {
+ public PDAStackFrame getStackFrame() {
return fFrame;
}

Back to the top