Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d81c35b263614d4cad5523d285d3cc84c279c3a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*******************************************************************************
 * Copyright (c) 2000, 2007 QNX Software Systems 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
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     QNX Software Systems - Initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.debug.mi.core.event;

import org.eclipse.cdt.debug.mi.core.MISession;

public class MIBreakpointChangedEvent extends MIChangedEvent {

	/**
	 * We need these flags to notify the upper layer what kind of a breakpoint
	 * has been set from the console.
	 * See https://bugs.eclipse.org/bugs/show_bug.cgi?id=135250 
	 */
	public static final int HINT_NONE = 0;
	public static final int HINT_NEW_LINE_BREAKPOINT = 1;
	public static final int HINT_NEW_FUNCTION_BREAKPOINT = 2;
	public static final int HINT_NEW_ADDRESS_BREAKPOINT = 3;
	public static final int HINT_NEW_CATCHPOINT = 4;

	int no = 0;
	int hint = HINT_NONE;

	public MIBreakpointChangedEvent(MISession source, int number) {
		this(source, 0, number, 0);
	}

	public MIBreakpointChangedEvent(MISession source, int number, int hint) {
		this(source, 0, number, hint);
	}

	public MIBreakpointChangedEvent(MISession source, int id, int number, int hint) {
		super(source, id);
		this.no = number;
		this.hint = hint;
	}

	public int getNumber() {
		return no;
	}

	public int getHint() {
		return hint;
	}
}

Back to the top