package questions; import course.*; import course.*; /** * An abstract representation of a student's * attempt at a question */ public abstract class QuestionAttempt { public Question question; public Response response; public Test test; /** * Sets the parameters for a questionattempt object * @param question The question object this is an attempt for * @param response The response object representing the response * of this attempt */ public QuestionAttempt(Question q, Response r) { } }