package testtool.Main; import java.util.Collection; /** * * A Question has all the generic elements included in a question * * @author * @version * **/ public class Question { /** Default Constructor **/ public Question() { } protected String classname; protected int length; protected String keywords; protected int week; protected String qs; protected String au; protected int dlu; protected String d; protected Answer an; protected int dbn; }