import javax.swing.*; class Test1 extends JFrame { public Test1() { super(); getContentPane().add(new JTextField()); setSize(200,100); } public static void main(String[] args) { Test1 frame = new Test1(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible(true); } }