package users; import java.util.Date; import tests.*; /** * @author bnaftali * */ public class Assignment { /** * Test in question. */ private Test taken; /** * Time taken/assigned etc. */ private Date time; /** * Action that has occurred. */ private String assign; /** * @param take - Test that was taken/graded etc. * @param now - Time that this action occurred. * @param action - Action involved (grading, taking, assigning, etc). */ public Assignment(Test take, Date now, String action) { } /** * @return String representing the action that occurred. */ public String printAction() { return ""; } }