mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
New file.
This commit is contained in:
parent
92f138c807
commit
8d9805d4af
1 changed files with 30 additions and 0 deletions
|
@ -0,0 +1,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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue