/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package homework7;

/**
 *
 * @author kvaradar
 */
public interface MyEntry<K,V> {
 
   public K getKey();
   public V getValue();

}
