public interface Employee { /** * Determines if this Employee object’s gross pay is greater than * a specified Employee object’s gross pay. * * @param otherEmployee - the specified Employee object whose * gross pay this Employee object’s gross pay is compared to. * * @return true - if this Employee object’s gross pay is greater than * otherEmployee’s gross pay. * */ boolean makesMoreThan (Employee otherEmployee); /** * Returns a String representation of this Employee object with the name * followed by a space followed by a dollar sign followed by the gross * monthly pay, with two fractional digits. * * @return a String representation of this Employee object. * */ String toString(); } // interface Employee