/** DegreeProgram is the abstract class for any degree program that a student might take at UCSB */ public abstract class CoEDegreeProgram extends UCSBDegreeProgram { public String collegeRequirements() { return "You must complete the COE breadth and depth requirements, etc.\n"; } public abstract String departmentRequirements(); }