Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] Event for errors

Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.core/ChangeLog,v
retrieving revision 1.66
diff -u -r1.66 ChangeLog
--- ChangeLog	28 Nov 2002 23:45:16 -0000	1.66
+++ ChangeLog	2 Dec 2002 18:30:45 -0000
@@ -1,3 +1,7 @@
+2002-12-02 Alain Magloire
+
+	* src/org/eclipse/cdt/debug/core/cdi/ICDIErrorInfo.java: New file.
+
 2002-11-28 Mikhail Khodjaiants
 	'exec-until' instead of temporary breakpoints for 'run to line'.
 	* CDebugTarget.java
Index: src/org/eclipse/cdt/debug/core/cdi/ICDIErrorInfo.java
===================================================================
RCS file: src/org/eclipse/cdt/debug/core/cdi/ICDIErrorInfo.java
diff -N src/org/eclipse/cdt/debug/core/cdi/ICDIErrorInfo.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ src/org/eclipse/cdt/debug/core/cdi/ICDIErrorInfo.java	2 Dec 2002 18:30:45 -0000
@@ -0,0 +1,21 @@
+/*
+ *(c) Copyright QNX Software Systems Ltd. 2002.
+ * All Rights Reserved.
+ * 
+ */
+package org.eclipse.cdt.debug.core.cdi;
+
+/**
+ * 
+ * Represents an information provided by the session when the program 
+ * exited.
+ * 
+ * @since Jul 10, 2002
+ */
+public interface ICDIErrorInfo extends ICDISessionObject {
+
+	/**
+	 * Returns the error message.
+	 */
+	public String getMessage();
+}



Back to the top