package testtool.Questions; import testtool.Courses.*; import java.util.Collection; /** * * This is the portion that depends on question type. This is the actual question data, like the question text, answer choices, etc. * * @author * @version * **/ public class Prompt { /** Default Constructor **/ public Prompt() { } protected Text text; protected PromptType promptType; }