Swing (javax.swing)

Creating a Button


    JButton textbutton = new JButton("Label");
    JButton imagebutton = new JButton( new ImageIcon(iconpath + "ok.gif"));
    JButton doublebutton = new JButton("Label", new ImageIcon(iconpath + "ok.gif"));


    abutton.addActionListener(actionListener);