home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- class HashtableEntry {
- int hash;
- Object key;
- Object value;
- HashtableEntry next;
-
- protected Object clone() {
- HashtableEntry entry = new HashtableEntry();
- entry.hash = this.hash;
- entry.key = this.key;
- entry.value = this.value;
- entry.next = this.next != null ? (HashtableEntry)this.next.clone() : null;
- return entry;
- }
- }
-