import SimpleOutput; // So we can print output import Student; // So we can create students import ClassList; // So we can list students /** * A simple test of course management. * * @author Samuel A. Rebelsky * @author Your Name Here * @version 1.0 of January 1999 */ public class CourseManager { /** * Manage the class. */ public static void main(String[] args) { // Prepare to print output. SimpleOutput out = new SimpleOutput(); // Set up the course. ClassList cs1 = new ClassList("CS1"); // Add some students to the class. cs1.addStudent(new Student("Sam", "Rebelsky")); cs1.addStudent(new Student("Julie", "Dunn")); cs1.addStudent(new Student("Susan", "Hartman")); cs1.addStudent(new Student("Henry", "Walker")); // Print out the class list out.println(cs1.toString()); } // main(String[]) } // class CourseManager