1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

New file.

This commit is contained in:
Alain Magloire 2003-02-03 21:34:18 +00:00
parent 32b79c9194
commit 55e17f06b5

View file

@ -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();
}