The ArraySort Class of the com.ms.util package sorts an Object array using a Comparison object.
public class ArraySort extends Sort { // Methods protected int compare(int p, int q); static public void sort(Object array[], Comparison comparison); static public void sort(Object array[], Comparison comparison, int first, int size); protected void swap(int p, int q); }
Sort | +--ArraySort