home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 April / DPPCPRO0499.ISO / April / Notes / 50b2wic.exe / DATA1.CAB / NotesProgramFilesJavaSupport / Notes.jar / Acme / IntHashtableEntry.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-11-16  |  707 b   |  18 lines

  1. package Acme;
  2.  
  3. class IntHashtableEntry {
  4.    int hash;
  5.    int key;
  6.    Object value;
  7.    IntHashtableEntry next;
  8.  
  9.    protected Object clone() {
  10.       IntHashtableEntry entry = new IntHashtableEntry();
  11.       entry.hash = this.hash;
  12.       entry.key = this.key;
  13.       entry.value = this.value;
  14.       entry.next = this.next != null ? (IntHashtableEntry)this.next.clone() : null;
  15.       return entry;
  16.    }
  17. }
  18.