Package workbench

Source Code of workbench.Main

package workbench;

import workbench.ui.Gui;

public class Main {

  /**
   * @param args
   */
  public static void main(String[] args) {
    Gui gui = new Gui();
    new Control(gui);
    gui.setVisible(true);
  }
}
TOP

Related Classes of workbench.Main

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.