Crear un nuevo botón Java Swing

JButton button = new JButton("Button text");

frame.add(button);
Mikicrep