package utils; import java.util.Comparator; public interface SortFile { /** Sort the file named 'fname' that contains objects of type Item */ public void sort(String fname, Comparator c); }