/**
* The driver for JMUview -- a simple text file viewer
*
* @author Nancy Harris
* @version 1.0
*/
public class JMUEdit{
   /** 
    * The entry point for JMUview
    *     
    * @param args The command-line arguments>    
    */   
   public static void main(String[] args)
   {
		TextEditor editor;
		TextWindow window;
		
		editor = new TextEditor();
		editor.setShouldHaveScrollBar(true);
		editor.setEditable(true);
		
		window = new TextWindow("JMUedit");
		window.setTextEditor(editor);
		window.setShouldConfirmExit(true);
		window.addFileMenu();
		window.open();
		window.setVisible(true);
	}
}