package SwingThreadTest; import javax.swing.JFrame; public class SwingTestThread { public static void main(String[] args) { SwingThreadFrame frame = new SwingThreadFrame(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible(true); } }