JFrame jFrame = new JFrame();JTextField jTextField = new JTextField();jFrame.add(jTextField);jFrame.setBounds(0, 0, 200, 60);jFrame.setVisible(true);