Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/debug/service/IBreakpointsExtension.java')
-rw-r--r--dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/debug/service/IBreakpointsExtension.java52
1 files changed, 26 insertions, 26 deletions
diff --git a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/debug/service/IBreakpointsExtension.java b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/debug/service/IBreakpointsExtension.java
index ec50bbca33c..80a02cc075c 100644
--- a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/debug/service/IBreakpointsExtension.java
+++ b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/debug/service/IBreakpointsExtension.java
@@ -7,7 +7,7 @@
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
- *
+ *
* Contributors:
* Wind River Systems - initial API and implementation
*******************************************************************************/
@@ -18,35 +18,35 @@ import org.eclipse.cdt.dsf.debug.service.IRunControl.IExecutionDMContext;
import org.eclipse.cdt.dsf.debug.service.IRunControl.ISuspendedDMEvent;
/**
- * Extension to the Breakpoints service which adds support for correlating
+ * Extension to the Breakpoints service which adds support for correlating
* breakpoints and execution contexts.
* @since 2.1
*/
public interface IBreakpointsExtension extends IBreakpoints {
- /**
- * Event indicating that a given thread or container was suspended
- * by the given breakpoint(s).
- */
- public interface IBreakpointHitDMEvent extends ISuspendedDMEvent {
-
- /**
- * Returns the breakpoints that suspended the thread.
- */
- IBreakpointDMContext[] getBreakpoints();
- }
+ /**
+ * Event indicating that a given thread or container was suspended
+ * by the given breakpoint(s).
+ */
+ public interface IBreakpointHitDMEvent extends ISuspendedDMEvent {
+
+ /**
+ * Returns the breakpoints that suspended the thread.
+ */
+ IBreakpointDMContext[] getBreakpoints();
+ }
- /**
- * If a given execution context was suspended due to hitting a breakpoint,
- * this method should return the breakpoints which caused the thread or
- * container to suspend.
- * <p>
- * If the given thread is not suspended or is not suspended at a
- * breakpoint, an empty array or an error with an INVALID_STATE code
- * will be returned.
- *
- * @param ctx Thread or container to get breakpoints for.
- * @param rm Breakpoints that the thread or container is suspended on.
- */
- public void getExecutionContextBreakpoints(IExecutionDMContext ctx, DataRequestMonitor<IBreakpointDMContext[]> rm);
+ /**
+ * If a given execution context was suspended due to hitting a breakpoint,
+ * this method should return the breakpoints which caused the thread or
+ * container to suspend.
+ * <p>
+ * If the given thread is not suspended or is not suspended at a
+ * breakpoint, an empty array or an error with an INVALID_STATE code
+ * will be returned.
+ *
+ * @param ctx Thread or container to get breakpoints for.
+ * @param rm Breakpoints that the thread or container is suspended on.
+ */
+ public void getExecutionContextBreakpoints(IExecutionDMContext ctx, DataRequestMonitor<IBreakpointDMContext[]> rm);
}

Back to the top