Java AbstractButton .getActionListeners ()

Syntax

AbstractButton.getActionListeners() has the following syntax.

public ActionListener [] getActionListeners()

Example

In the following code shows how to use AbstractButton.getActionListeners() method.


//from w w w .  j a  va 2s .c om
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.AbstractButton;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JFrame;

public class Main {
  public static void main(String[] args) {
    AbstractButton jb = new JButton("Press Me");
    jb.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent arg0) {
        System.out.println(((JComponent) arg0.getSource())
            .getFont());
      }
    });
    ActionListener[] lis = jb.getActionListeners();
    
    JFrame f = new JFrame();
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.getContentPane().add(jb);
    f.pack();
    f.setVisible(true);
  }
}