/** LandSDegreeProgram is the abstract class for any degree program in the College of Letters and Science */ public abstract class LandSDegreeProgram extends UCSBDegreeProgram { public String collegeRequirements() { return "You must complete the L&S Gen Eds etc.\n"; } public abstract String departmentRequirements(); }