/** defines an interface with two abstract methods,
 which are public and abstract by default 
 (Oct. 28, 2001)
*/
public interface SortOutput {

  /** sort the invoking Vector of Objects */ 
  void sort();

  /** output the invoking Vecot of Objects to a text file
    named outFileName */ 
  void output(String outFileName);
}
