From 55e17f06b5489ca7a2581657dbb348aba5882930 Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Mon, 3 Feb 2003 21:34:18 +0000 Subject: [PATCH] New file. --- .../debug/core/cdi/ICDISignalExitInfo.java | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDISignalExitInfo.java diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDISignalExitInfo.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDISignalExitInfo.java new file mode 100644 index 00000000000..8d4cc68885e --- /dev/null +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDISignalExitInfo.java @@ -0,0 +1,26 @@ +/* + *(c) Copyright QNX Software Systems Ltd. 2002. + * All Rights Reserved. + * + */ +package org.eclipse.cdt.debug.core.cdi; + +/** + * Represents information provided by the session when the program exited. + * + */ +public interface ICDISignalExitInfo extends ICDISessionObject { + + /** + * Method getName. + * @return String + */ + String getName(); + + /** + * Method getDescription. + * @return String + */ + String getDescription(); + +}