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

  1. package sun.misc;
  2.  
  3. class CacheEntry extends Ref {
  4.    int hash;
  5.    Object key;
  6.    CacheEntry next;
  7.  
  8.    public Object reconstitute() {
  9.       return null;
  10.    }
  11. }
  12.