import javax.swing.JFrame; import javax.swing.JButton; import javax.swing.JTextFiled; import javax.swing.BoxLayout; class Program01 extends JFrame { Button gomb1 = new JButton("Klikk"); JTextFiled mezo1 = new JTextFiled(40); Program01() { setLayout(new BoxLayout(getContentPane(), BoxLayout.Y_AXIS)); add(mezo1); add(gomb1); pack(); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setVisible(true); } public static main(String[ args) { new Program01(); } }