/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package adaptablepriorityqueue; /** * * @author kvaradar */ public class DefaultComparator implements java.util.Comparator { public int compare(E a, E b) throws ClassCastException { return ((Comparable) a).compareTo(b); } }