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

Now extends ICDIDestroyedEvent with new method

getReason().
This commit is contained in:
Alain Magloire 2003-02-03 21:34:08 +00:00
parent 08db8ae0fd
commit 32b79c9194

View file

@ -5,7 +5,7 @@
*/
package org.eclipse.cdt.debug.core.cdi.event;
import org.eclipse.cdt.debug.core.cdi.ICDIExitInfo;
import org.eclipse.cdt.debug.core.cdi.ICDISessionObject;
/**
*
@ -17,12 +17,12 @@ import org.eclipse.cdt.debug.core.cdi.ICDIExitInfo;
*
* @since Jul 10, 2002
*/
public interface ICDIExitedEvent extends ICDIEvent {
public interface ICDIExitedEvent extends ICDIDestroyedEvent {
/**
* Returns the information provided by the session when program
* is exited.
*
* @return the exit information
*/
ICDIExitInfo getExitInfo();
ICDISessionObject getReason();
}