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 / misc / QueueElement.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-08  |  889 b   |  16 lines

  1. package sun.misc;
  2.  
  3. class QueueElement {
  4.    QueueElement next;
  5.    QueueElement prev;
  6.    Object obj;
  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.