1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
import javax.swing.JFrame;
import javax.swing.JButton;
import javax.swing.JToolBar;
public class Start extends JFrame {
private static final long serialVersionUID = 1L;
private JPanel jContentPane = null;
private JButton jButton2 = null;
private JToolBar jJToolBarBar = null;
private JButton getJButton2() {
if (jButton2 == null) {
jButton2 = new JButton();
jButton2.setText("lol");
jButton2.setBounds(144, 114, 47, 26);
jButton2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent e) {
System.out.println("hello world"); // TODO Auto-generated Event stub actionPerformed()
}
});
}
return jButton2;
} |