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:
parent
571c2f93bb
commit
7909269cef
1 changed files with 23 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue