package testtool.TestGen;

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

import java.util.Collection;

/**
 *
 * 
			Represents the range that the total time of all the questions in  the
			generated test must sum to.
		 * 
 * @author 
 * @version 
 *
 **/

public class TimeRange {

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

     }

     protected int lower_qauntity;

     protected int upper_quantity;

     protected Minutes min;

}