001package components.sortingmachine; 002 003import java.util.Collection; 004import java.util.Iterator; 005import java.util.LinkedList; 006 007/** 008 * Layered implementations of secondary methods for {@code SortingMachine}. 009 * 010 * @param <T> 011 * type of SortingMachine entries 012 */ 013public abstract class SortingMachineSecondary<T> implements SortingMachine<T> { 014 015 /* 016 * 2221/2231 assignment code deleted. 017 */ 018 019}