home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &… the Search for Life CD 3 / 0_CD-ROM.iso / install / jre1_3 / lib / rt.jar / sun / misc / QueueElement.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  657 b   |  16 lines

  1. package sun.misc;
  2.  
  3. class QueueElement {
  4.    QueueElement next = null;
  5.    QueueElement prev = null;
  6.    Object obj = null;
  7.  
  8.    QueueElement(Object var1) {
  9.       this.obj = var1;
  10.    }
  11.  
  12.    public String toString() {
  13.       return "QueueElement[obj=" + this.obj + (this.prev == null ? " null" : " prev") + (this.next == null ? " null" : " next") + "]";
  14.    }
  15. }
  16.