jde.debugger.command
Class CommandRegistry

java.lang.Object
  |
  +--jde.debugger.command.CommandRegistry

public class CommandRegistry
extends java.lang.Object

Each command has a command id associated with it, that is used by jde, to match with the corresponding result/error. jdebug maintains the pending command ids in this collection (as does Application, see Application#pendingCommands), and removes them once the command processing is over.
Hence, the command id can actually be reused. Created: Sun Feb 18 00:22:14 2001

Version:
 
Author:

Method Summary
 void addCommand(java.lang.Integer cmdID)
           
 boolean commandExists(java.lang.Integer cmdID)
           
static CommandRegistry getTheRegistry()
           
 void removeCommand(java.lang.Integer cmdID)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

addCommand

public void addCommand(java.lang.Integer cmdID)

removeCommand

public void removeCommand(java.lang.Integer cmdID)

commandExists

public boolean commandExists(java.lang.Integer cmdID)

getTheRegistry

public static CommandRegistry getTheRegistry()