Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2002-04-05 17:42:48 +0000
committerDarin Wright2002-04-05 17:42:48 +0000
commit6859e9d0c86edddb2a65709169dd1ee7d5dde5c3 (patch)
tree4312d6539fd2a72c4adbdbe639517788de664e84 /org.eclipse.debug.core
parentd383a6e367ed3a6868cc9681782f35d23497a50c (diff)
downloadeclipse.platform.debug-6859e9d0c86edddb2a65709169dd1ee7d5dde5c3.tar.gz
eclipse.platform.debug-6859e9d0c86edddb2a65709169dd1ee7d5dde5c3.tar.xz
eclipse.platform.debug-6859e9d0c86edddb2a65709169dd1ee7d5dde5c3.zip
bug 12310
Diffstat (limited to 'org.eclipse.debug.core')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugTarget.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugTarget.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugTarget.java
index ff6ea5c5f..663c166fb 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugTarget.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugTarget.java
@@ -77,6 +77,16 @@ public interface IDebugTarget extends IDebugElement, ITerminate, ISuspendResume,
* the failure.</li>
*/
public String getName() throws DebugException;
+
+ /**
+ * Returns whether the given breakpoint is supported by this
+ * target - i.e. whether the given breakpoint could be installed
+ * in this target.
+ *
+ * @return whether the given breakpoint is supported by this
+ * target
+ */
+ public boolean supportsBreakpoint(IBreakpoint breakpoint);
}

Back to the top