Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import java.awt.event.ActionListener;

import javax.swing.AbstractButton;

import javax.swing.JComboBox;

public class Main {
    public static void addActionListener(ActionListener listener, JComboBox... components) {
        for (JComboBox component : components) {
            component.addActionListener(listener);
        }
    }

    public static void addActionListener(ActionListener listener, AbstractButton... buttons) {
        for (AbstractButton button : buttons) {
            button.addActionListener(listener);
        }
    }
}