1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-30 21:55:31 +02:00

Added new state - "STEPPED".

This commit is contained in:
Mikhail Khodjaiants 2004-07-20 21:44:16 +00:00
parent 2f7b91dea5
commit 0146196946
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2004-07-20 Mikhail Khodjaiants
Added new state - "STEPPED".
* CDebugElementState.java
2004-07-20 Mikhail Khodjaiants
Cleanup.
* ICDebugInternalConstants.java

View file

@ -33,6 +33,7 @@ public class CDebugElementState {
public static final CDebugElementState RESUMING = new CDebugElementState( "resuming" ); //$NON-NLS-1$
public static final CDebugElementState RESUMED = new CDebugElementState( "resumed" ); //$NON-NLS-1$
public static final CDebugElementState STEPPING = new CDebugElementState( "stepping" ); //$NON-NLS-1$
public static final CDebugElementState STEPPED = new CDebugElementState( "stepped" ); //$NON-NLS-1$
public static final CDebugElementState SUSPENDING = new CDebugElementState( "suspending" ); //$NON-NLS-1$
public static final CDebugElementState SUSPENDED = new CDebugElementState( "suspended" ); //$NON-NLS-1$
public static final CDebugElementState RESTARTING = new CDebugElementState( "restarting" ); //$NON-NLS-1$