/* Interface IAthlete.java * CS207-2 Homework 7 Fall 2018 * An interface is a behavior that implementing classes are required to conform to. * Do not make changes to this class. */ public interface IAthlete { public abstract void data(); }