JFrame f = new JFrame("The Frame"); f.setLocation(100, 100); Container content = f.getContentPane( ); content.setLayout(new FlowLayout( )); content.add(new JLabel("Mango")); content.add(new JButton("Mango")); f.pack( ); f.setVisible(true);