//interface, note the interface keyword public interface eg36_Relatable { //all fields in interface are treated as final and static (although it is not delcared that way) boolean equals(eg27_GradedActivity g); boolean isGreater(eg27_GradedActivity g); boolean isLess(eg27_GradedActivity g); }