package testtool.Question; import java.util.Collection; /** * * A long text answer area that can be automatically graded by passing the text response off to another program or script for grading. * * @author * @version * **/ public class EssayAnswerArea extends ShortAnswerArea { /** Default Constructor **/ public EssayAnswerArea() { super(); } protected boolean manuallyGrade; protected String script; protected String scriptFileName; }