Package com.test.wordprocessor.ui

Examples of com.test.wordprocessor.ui.MainFrame


  /**
   * @param args
   */
  public static void main(String[] args) {

    MainFrame frame = new MainFrame("BestDraft Word Processor");
    frame.setBounds(320, 120, 600, 500);
    frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
    frame.setVisible(true);
  }
View Full Code Here

TOP

Related Classes of com.test.wordprocessor.ui.MainFrame

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.