package priorityqueue; /** * Created with xgiovio.macbookair. * User: xgiovio * Date: 01/04/14 * Time: 16:27 */ public interface Entry { public K getKey(); public V getValue(); }