package gradertool.view;

import java.awt.*;

/****
 *
 * Class FileUI is the top-level class for prototype GUIs related to Grader
 * Tool file processing.  FileUI constructs and composes the File pulldown
 * menu.  Standard Swing file and input dialogs used for the File.open,
 * File.saveAs, and File.print commands.  Standard JFC error dialogs are used
 * to report any file-related errors.  Hence, FileUI does not need to define
 * any additional GUIs other than the pulldown menu.
 *
 */
public class ToolsUI {

    /**
     * Construct this simply by building the menu.  As noted in the class
     * comment, there are no other file-related GUIs to construct.
     */
    public ToolsUI() {
        toolsMenu = new ToolsMenu();
    }

    /**
     * Return the file memu.
     */
    public ToolsMenu getMenu() {
        return toolsMenu;
    }

    /** The constructed file menu */
    protected ToolsMenu toolsMenu;

}