/** * Creates sort algorithms for use in the sort analyzer. * @author *** YOUR NAME HERE *** */ public class SortFactory { /** * Adds sort algorithms to the given analyzer. * @param anAnalyzer analyzer to receive algorithms */ public static void addSorts(SortAnalyzer anAnalyzer) { anAnalyzer.add(new SelectionSort()); } }