public class HashListEntry implements Entry { public K key; public V value; public HashListEntry prev; public HashListEntry next; // *************************************************** // Constructor: // Initial the key and value variable using k and v // and set prev and next to null // *************************************************** public HashListEntry(K k, V v) { } // *************************************************** // getKey(): return the key in the entry // *************************************************** public K getKey() { } // *************************************************** // getKey(): return the value in the entry // *************************************************** public V getValue() { } public V setValue(V val) { V oldValue = value; value = val; // Update value return oldValue; // Return old value } public String toString() { return( "(" + key + "," + value + ")" ); } }