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