/**
 * Grinnell's version of a thingy used to compare values.
 */
public interface GComparator
{
  public boolean mayPrecede(Object left, Object right);
} // interface GComparator
 
