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 / BreakpointQueue.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-08  |  712 b   |  28 lines

  1. package sun.tools.debug;
  2.  
  3. class BreakpointQueue {
  4.    // $FF: renamed from: pc int
  5.    int field_0;
  6.    Thread thread;
  7.    int opcode;
  8.    BreakpointQueue nextQ;
  9.    Throwable exception;
  10.    int catch_pc;
  11.    boolean updated;
  12.  
  13.    synchronized boolean nextEvent() {
  14.       do {
  15.          try {
  16.             this.wait();
  17.          } catch (InterruptedException var1) {
  18.          }
  19.       } while(this.updated);
  20.  
  21.       return true;
  22.    }
  23.  
  24.    synchronized void reset() {
  25.       this.field_0 = -1;
  26.    }
  27. }
  28.