package testtool.Question;


import java.util.Collection;

/**
 *
 * 
			An answer area for text responses about a paragraph in length. The answer
 * can only be
			manually graded. For text reponses that need to be
 * automatically graded by an external
			program or script, an EssayAnswerArea
 * should be used. The text response length is
			limited by 'Limit' number of 'TextQuantity' quantities of text. at a minimum or
			maximum.
		 * 
 * @author 
 * @version 
 *
 **/

public class ShortAnswerArea {

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

     }

     protected boolean isMin;

     protected TextQuantity txtQuantity;

     protected int limit;

}