Package models

Source Code of models.TestClass

package models;

import javax.swing.JFrame;

import views.MenuBar;

public class TestClass {

  /**
   * @param args
   */
  public static void main(String[] args) {
    // TODO Auto-generated method stub
    JFrame jf=new JFrame("...");
    jf.add(new MenuBar());
    jf.pack();
    jf.setVisible(true);
  }

}
TOP

Related Classes of models.TestClass

TOP
Copyright © 2018 www.massapi.com. 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.