package testtool.Question; import java.util.Collection; /** * * The question as it exists in a question bank and also the base class for the different question objects. * * @author * @version * **/ public class FullQuestion { /** Default Constructor **/ public FullQuestion() { } protected String class; protected Keywords keywords; protected int difficulty; protected TimeToComplete timeToComplete; protected Date dateAdded; protected Date dateModified; protected Date dateLastUsed; protected String owner; protected QuestionBody questionBody; protected Collection keyAnswers; protected int id; }