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