package Grades; import Visual.*; import Info.*; import Prediction.*; import Reports.*; import Assignments.*; import java.util.Collection; /** * CompressedGradeBook represents a simpler gradebook. */ public class CompressedGradeBook { /** * The collection that contains Students */ Collection students; /** * The collection that contains Students */ Collection grades; }