From 7909269cef2ee6e8005ee4cbad68891ff1dcade9 Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Mon, 3 Feb 2003 19:30:16 +0000 Subject: [PATCH] new methods added. --- .../cdt/debug/core/cdi/model/ICDISignal.java | 24 ++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDISignal.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDISignal.java index 0a13ca8279a..bc8371973ee 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDISignal.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDISignal.java @@ -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(); }