package testtool.TestGen;

import testtool.Test.*;
import testtool.Question.*;
import testtool.QuestionBank.*;

import java.util.Collection;

/**
 *
 * 
			List of the various question type and the amount of that type of question that
			must be in the test.
		 * 
 * @author 
 * @version 
 *
 **/

public class QuestionTypes {

     /** Default Constructor **/
     public QuestionTypes() {

     }

     protected TrueFalseOption tf_option;

     protected MultipleChoiceOption mc_option;

     protected MatchingOption mt_option;

     protected FillInTheBlankOption fib_option;

     protected ShortAnswerOption sa_option;

     protected EssayAnswerOption ea_option;

     protected ProgramCodeOption pc_option;

     protected int free_selected;

}