Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2001-09-05 11:26:19 +0000
committerDarin Wright2001-09-05 11:26:19 +0000
commit2fb0ad57fce265775ac0e2090cb53ca45b16b7cc (patch)
tree63420fad19dd716f69ff9dc32b418b5c3b20aca5 /org.eclipse.debug.core/core/org/eclipse/debug/core/IBreakpoint.java
parentfa5f4fc3cc5f34a9f11677a2d1660b886586bf69 (diff)
downloadeclipse.platform.debug-2fb0ad57fce265775ac0e2090cb53ca45b16b7cc.tar.gz
eclipse.platform.debug-2fb0ad57fce265775ac0e2090cb53ca45b16b7cc.tar.xz
eclipse.platform.debug-2fb0ad57fce265775ac0e2090cb53ca45b16b7cc.zip
breakpoint API
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/IBreakpoint.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/IBreakpoint.java45
1 files changed, 0 insertions, 45 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/IBreakpoint.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/IBreakpoint.java
deleted file mode 100644
index 9690b734e..000000000
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/IBreakpoint.java
+++ /dev/null
@@ -1,45 +0,0 @@
-package org.eclipse.debug.core;
-
-import org.eclipse.core.resources.IMarker;
-import org.eclipse.core.runtime.CoreException;
-
-public interface IBreakpoint {
-
-/**
- * Deletes this marker from its associated resource. This method has no
- * effect if this marker does not exist.
- *
- * @exception CoreException if this marker could not be deleted. Reasons include:
- * <ul>
- * <li> Resource changes are disallowed during resource change event notification.</li>
- * </ul>
- */
-public void delete() throws CoreException;
-
-/**
- * Returns the marker associated with the breakpoint.
- *
- * @return the marker, or <code>null</code> if the marker does not exist.
- */
-public IMarker getMarker();
-/**
- * Sets the marker associated with this breakpoint to the given marker
- */
-public void setMarker(IMarker marker);
-/**
- * Returns the model identifier for this breakpoint.
- */
-public String getModelIdentifier();
-/**
- * Returns whether this breakpoint is enabled
- */
-public boolean isEnabled() throws CoreException;
-/**
- * Set the enabled state of this breakpoint.
- *
- * @param enabled whether this breakpoint should be enabled
- */
-public void setEnabled(boolean enabled) throws CoreException;
-
-}
-

Back to the top