AbstractButton.setActionCommand(String actionCommand) has the following syntax.
public void setActionCommand(String actionCommand)
In the following code shows how to use AbstractButton.setActionCommand(String actionCommand) method.
import javax.swing.AbstractButton; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.event.ChangeEvent; import javax.swing.event.ChangeListener; //from www . j a va 2 s . c o m public class Main { public static void main(String[] args) { AbstractButton jb = new JButton("Press Me"); jb.addChangeListener(new ChangeListener() { public void stateChanged(ChangeEvent ev) { System.out.println("ChangeEvent!"); } }); jb.setActionCommand("Bob"); JFrame f = new JFrame(); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); f.getContentPane().add(jb); f.pack(); f.setVisible(true); } }