Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/event/MICatchpointHitEvent.java')
-rw-r--r--debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/event/MICatchpointHitEvent.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/event/MICatchpointHitEvent.java b/debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/event/MICatchpointHitEvent.java
index 7a06414e3b2..fae38e46ee2 100644
--- a/debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/event/MICatchpointHitEvent.java
+++ b/debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/event/MICatchpointHitEvent.java
@@ -18,8 +18,19 @@ import org.eclipse.cdt.debug.mi.core.output.MIExecAsyncOutput;
*/
public class MICatchpointHitEvent extends MIStoppedEvent {
+ /**
+ * See catcpointType parameter in constructor
+ */
private String fCatchpointType;
+ /**
+ * @param source
+ * @param async
+ * @param catchpointType
+ * the type of catchpoint as reported by gdb via the gdb console
+ * when the catchpoint is hit. We parse the stream record to get
+ * this.
+ */
public MICatchpointHitEvent(MISession source, MIExecAsyncOutput async, String catchpointType) {
super(source, async);
fCatchpointType = catchpointType;

Back to the top