Créer un nouveau bouton swing java

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

frame.add(button);
Mikicrep