JButton helloButton = new JButton("Say Hello");
frame.setLayout(new FlowLayout());
frame.add(helloButton);
Swing Components Demonstration