mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-01 06:05:24 +02:00
Added new state - "STEPPED".
This commit is contained in:
parent
2f7b91dea5
commit
0146196946
2 changed files with 5 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2004-07-20 Mikhail Khodjaiants
|
||||
Added new state - "STEPPED".
|
||||
* CDebugElementState.java
|
||||
|
||||
2004-07-20 Mikhail Khodjaiants
|
||||
Cleanup.
|
||||
* ICDebugInternalConstants.java
|
||||
|
|
|
@ -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$
|
||||
|
|
Loading…
Add table
Reference in a new issue