package design.model; 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(); }