/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sortedlistpriorityqueue; /** * * @author kvaradar */ public class MyEntry implements Entry { protected K k; protected V v; public MyEntry(K key, V value) { k = key; v = value; } public K getKey() {return k;} public V getValue() {return v;} }