/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package homework7; /** * * @author kvaradar */ public interface MyEntry { public K getKey(); public V getValue(); }