package pqueue; /** An adaptable version of a priority deque. */ public interface AdaptablePriorityDeque extends AdaptablePriorityQueue, PriorityDeque { // Inherit all the methods from both the interfaces it extends. // No other methods are needed. }