Here you can find the source of addActionListeners(AbstractButton button, ActionListener[] listeners)
public static void addActionListeners(AbstractButton button, ActionListener[] listeners)
//package com.java2s; /*//from w w w . j av a 2s .co m * SK's Minecraft Launcher * Copyright (C) 2010-2014 Albert Pham <http://www.sk89q.com> and contributors * Please see LICENSE.txt for license information. */ import javax.swing.*; import java.awt.event.ActionListener; public class Main { public static void addActionListeners(AbstractButton button, ActionListener[] listeners) { for (ActionListener listener : listeners) { button.addActionListener(listener); } } }