I\'m fairly new to Java Swing and I\'m running into a few problems.
You should revalidate your panel
@Override public void actionPerformed(ActionEvent e) { JButton temp = new JButton("temp"); mPanel.add(temp); mPanel.revalidate(); mPanel.repaint(); }