package design.model.course_search; import design.model.Hole; import java.util.List; /* * Defines the interface for courses to implement * Willem Dalton */ public interface ICourse { String getName(); float getDifficultyRating(); String getLocation(); List getHoles(); int getHoleCount(); int getTotalPar(); }