public class MadPrompt { /* * You will write and design this code. So, what is a "MadPrompt"? * * A MadPrompt stores the positon of the MadWord in the story, and the string from the * MadDictionary that should be used to prompt the user. * * For example, if the MadStory is this: * * Hello [Cathy]. This is a [simple] test. * * When parsing the story in your setup() method, the first MadPrompt would indicate that * the string to prompt with is something like "person's name" and that it is for the * second word of the story. * * Note: this class is very simple! * */ public MadPrompt() { } public String toString() { return "Write this code"; } }