package Current.manage; /** * This class just encapsulates a string which indicates the filename of a * help document. When passed to the manager using a command such as * M.mcbSend(new HelpDocument("about.html")); * it tells the manager to try to display the help file "Files/Help/about.html" */ public class HelpDocument { public String file; /** Creates a pointer to the help file Files/Help/filename */ public HelpDocument(String filename) { file=filename; } }