1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

New file.

This commit is contained in:
Alain Magloire 2003-01-31 19:55:15 +00:00
parent 92f138c807
commit 8d9805d4af

View file

@ -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;
}
}