Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f235c3c851b3fb314e00adf5182b4b8d7ea16e1e (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 MISignalChangedEvent extends MIChangedEvent {

	String name;

	public MISignalChangedEvent(String n) {
		this(0, n);
	}

	public MISignalChangedEvent(int id, String n) {
		super(id);
		name = n;
	}

	public String getName() {
		return name;
	}

}

Back to the top