1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 23:05:47 +02:00

new methods added.

This commit is contained in:
Alain Magloire 2003-02-03 19:30:16 +00:00
parent 571c2f93bb
commit 7909269cef

View file

@ -26,6 +26,28 @@ public interface ICDISignal extends ICDIObject {
*
* @return the meaning of this signal
*/
String getMeaning();
String getDescription();
/**
* if false means program will see the signal.
* Otherwise program does not know.
*
* @return boolean
*/
boolean isIgnore();
/**
* Means reenter debugger if this signal happens
*
* Method isStopSet.
* @return boolean
*/
boolean isStopSet();
/**
* Continue program giving it this signal.
*
* Method signal.
*/
void signal();
}