home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VPage / Java.bin / CLASSES.ZIP / sun / tools / debug / AgentConstants.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-08  |  3.3 KB  |  83 lines

  1. package sun.tools.debug;
  2.  
  3. import sun.tools.java.Constants;
  4.  
  5. interface AgentConstants extends Constants {
  6.    int AGENT_VERSION = 3;
  7.    int TP_THREADGROUP = 15;
  8.    int TP_CLASS = 16;
  9.    int TP_OBJECT = 17;
  10.    int TP_STRING = 18;
  11.    int TP_THREAD = 19;
  12.    int CMD_GET_CLASS_INFO = 20;
  13.    int CMD_GET_THREAD_NAME = 21;
  14.    int CMD_GET_CLASS_BY_NAME = 22;
  15.    int CMD_MARK_OBJECTS = 23;
  16.    int CMD_FREE_OBJECTS = 24;
  17.    int CMD_LIST_THREADS = 25;
  18.    int CMD_RUN = 26;
  19.    int CMD_SUSPEND_THREAD = 27;
  20.    int CMD_RESUME_THREAD = 28;
  21.    int CMD_RESUME_LAST_SUSPENDED_THREADS = 29;
  22.    int CMD_GET_THREAD_STATUS = 31;
  23.    int CMD_GET_STACK_TRACE = 32;
  24.    int CMD_WRITE_BYTES = 33;
  25.    int CMD_SYSTEM = 34;
  26.    int CMD_GET_FIELDS = 35;
  27.    int CMD_GET_METHODS = 36;
  28.    int CMD_GET_VALUES = 37;
  29.    int CMD_GET_SLOT_SIGNATURE = 38;
  30.    int CMD_GET_SLOT_VALUE = 39;
  31.    int CMD_GET_ELEMENTS = 40;
  32.    int CMD_SET_BRKPT_LINE = 41;
  33.    int CMD_SET_BRKPT_METHOD = 42;
  34.    int CMD_CLEAR_BRKPT = 43;
  35.    int CMD_CLEAR_BRKPT_LINE = 44;
  36.    int CMD_CLEAR_BRKPT_METHOD = 45;
  37.    int CMD_BRKPT_NOTIFY = 46;
  38.    int CMD_LIST_THREADGROUPS = 47;
  39.    int CMD_GET_THREADGROUP_INFO = 48;
  40.    int CMD_LIST_CLASSES = 49;
  41.    int CMD_GET_STACK_VALUE = 50;
  42.    int CMD_SET_VERBOSE = 51;
  43.    int CMD_EXCEPTION_NOTIFY = 52;
  44.    int CMD_CATCH_EXCEPTION_CLS = 53;
  45.    int CMD_IGNORE_EXCEPTION_CLS = 54;
  46.    int CMD_GET_CATCH_LIST = 55;
  47.    int CMD_STOP_THREAD = 56;
  48.    int CMD_STOP_THREAD_GROUP = 57;
  49.    int CMD_QUIT = 58;
  50.    int CMD_GET_SOURCE_FILE = 59;
  51.    int CMD_OBJECT_TO_STRING = 60;
  52.    int CMD_GET_SOURCEPATH = 61;
  53.    int CMD_SET_SOURCEPATH = 62;
  54.    int CMD_STEP_THREAD = 63;
  55.    int CMD_NEXT_STEP_THREAD = 64;
  56.    int CMD_LIST_BREAKPOINTS = 65;
  57.    int CMD_THREADDEATH_NOTIFY = 66;
  58.    int CMD_QUIT_NOTIFY = 67;
  59.    int CMD_SET_SLOT_VALUE = 68;
  60.    int CMD_SET_STACK_VALUE = 69;
  61.    int CMD_OBJECT_FINALIZED = 70;
  62.    int CMD_GET_LINENUMBERS = 71;
  63.    int CMD_GET_METHOD_LINENO = 72;
  64.    int CMD_EXCEPTION = -2;
  65.    int THR_STATUS_UNKNOWN = -1;
  66.    int THR_STATUS_ZOMBIE = 0;
  67.    int THR_STATUS_RUNNING = 1;
  68.    int THR_STATUS_SLEEPING = 2;
  69.    int THR_STATUS_MONWAIT = 3;
  70.    int THR_STATUS_CONDWAIT = 4;
  71.    int THR_STATUS_SUSPENDED = 5;
  72.    int THR_STATUS_BREAK = 6;
  73.    int SYS_MEMORY_TOTAL = 1;
  74.    int SYS_MEMORY_FREE = 2;
  75.    int SYS_TRACE_METHOD_CALLS = 3;
  76.    int SYS_TRACE_INSTRUCTIONS = 4;
  77.    int BKPT_NORMAL = 1;
  78.    int BKPT_ONESHOT = 2;
  79.    int BKPT_CONDITIONAL = 3;
  80.    int BKPT_SCATTERSHOT = 4;
  81.    String PSWDCHARS = "23456789abcdefghijkmnpqrstuvwxyz";
  82. }
  83.