package grader.Main; import java.util.Collection; /** * * A HandinDirectory is a directory for an Item. The ItemName componen *t is the name of the Item. The StudentName component is the name of * the Student. The Deadline component is the due date/time of the Item *. The Files component is composed of the files that a Student has handed in. * * @author * @version * **/ public class HandinDirectory { /** Default Constructor **/ public HandinDirectory() { } protected String itemName; protected String studentName; protected int deadline; protected Collection object; }