/* * This is a simplified version of the GradeBook. It only contains the list of * students and the list of grades. * */ package Visual; import Grades.*; import Info.*; import Reports.*; import Assignments.*; import java.util.Collection; class CompressedGradeBook { Collection students; Collection grades; }