import java.util.*; /* This class provides a service of sorting an ArrayList of Sortable objects * This service implements a simple "Bubble Sort" --not very efficient. * This service is destructive in that it sorts the actual container pasted to it */ public class SortingService{ public void sort(ArrayList list){ //Destructively Sort list (That is, actually modify list) for(int i=0; i