public class Start { public static void main(String[] args) { javax.swing.SwingUtilities.invokeLater(new Runnable() { // implements the Runnable interface with a run method @Override public void run() { new MyFrame(); } }); } }