Skip to main content
summaryrefslogtreecommitdiffstats
blob: 2bb65072b6ae264201ecc28fdaf53df5ab254414 (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
/*
 * (c) Copyright QNX Software Systems Ltd. 2002.
 * All Rights Reserved.
 *
 */
package org.eclipse.cdt.debug.mi.core.event;



/**
 *
 */
public class MIBreakpointChangedEvent extends MIChangedEvent {

	int no;

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

	public MIBreakpointChangedEvent(int id, int number) {
		super(id);
		no = number;
	}

	public int getNumber() {
		return no;
	}

}

Back to the top