/** DegreeProgram is the abstract class for any degree program that a student might take at UCSB */ public abstract class UCSBDegreeProgram extends DegreeProgram { public String universityRequirements() { return "You must satisfy the UCSB multicultural and writing requirements, etc.\n"; } }