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 / ThreadList.class (.txt) < prev   
Encoding:
Java Class File  |  1997-07-08  |  525 b   |  11 lines

  1. package sun.tools.debug;
  2.  
  3. class ThreadList {
  4.    final Thread[] threads = new Thread[Thread.activeCount() + 10];
  5.    final int count;
  6.  
  7.    ThreadList() {
  8.       this.count = Thread.enumerate(this.threads);
  9.    }
  10. }
  11.