package myutilities;

  public interface Sortable {
    boolean lessThan(Sortable a);
  }
