/**
 * Sorter Interface 
 */
public interface Sorter
{
  public Object[] sort(Object[] toSort, GComparator comp);
} // interface Sorter

