/** defines an interface with two abstract methods,
 which are public and abstract by default */
public interface SortPrint {

  /** defines a String constant (static by default) */
  String heading = "(The output produced by S. Lang)";

  /** sort the invoking Object array */ 
  void sort();

  /** print the invoking Object array */ 
  void print();
}
