package Info; import java.util.Collection; /** * The roster of a class. */ public abstract class Roster { /** * The collection of students in the roster. */ public Collection students; /** * The size of of the roster. */ public int size; }