/* Interface ITrainer.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 ITrainer { public abstract void train( double h ); }