/* * Created by JFormDesigner on Thu May 16 15:05:27 CST 2019 */ package com.taover.ui; import java.awt.*; import javax.swing.*; import net.miginfocom.swing.*; /** * @author unknown */ public class RunEntityGenWindow { public static void main(String args[]){ EventQueue.invokeLater(new Runnable() { public void run() { try { EntityGenWindow window = new EntityGenWindow(); window.setVisible(true); } catch (Exception e) { e.printStackTrace(); } } }); } }