1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-05 00:36:16 +02:00

Added new type to ICDIResumedEvent.

This commit is contained in:
Mikhail Khodjaiants 2002-08-20 18:13:07 +00:00
parent 612877ef1d
commit 61b492d5c7

View file

@ -17,11 +17,12 @@ package org.eclipse.cdt.debug.core.cdi.event;
* @since Jul 10, 2002
*/
public interface ICDIResumedEvent extends ICDIEvent {
final static public int STEP_OVER = 0;
final static public int STEP_INTO = 1;
final static public int STEP_OVER_INSTRUCTION = 2;
final static public int STEP_INTO_INSTRUCTION = 3;
final static public int STEP_RETURN = 4;
final static public int CONTINUE = 0;
final static public int STEP_OVER = 1;
final static public int STEP_INTO = 2;
final static public int STEP_OVER_INSTRUCTION = 3;
final static public int STEP_INTO_INSTRUCTION = 4;
final static public int STEP_RETURN = 5;
/**
* Returns the stepping type.