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:
parent
612877ef1d
commit
61b492d5c7
1 changed files with 6 additions and 5 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue