package testtool.Editing; import testtool.QuestionDatabase.*; 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 Question { /** Default Constructor **/ public Question() { } protected String class_; protected String keyword; protected Format format; protected Duration duration; protected int difficulty; protected Collection object; protected Owner owner; protected Points points; }