Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.awt.event.ItemListener;

import javax.swing.JComboBox;

public class Main {
    /**
     * remove all items silently
     * @param aComboBox combo box
     * @param aListener listener
     */
    public final static void RemoveAllItemsSilently(JComboBox aComboBox, ItemListener aListener) {
        aComboBox.removeItemListener(aListener);
        aComboBox.removeAllItems();
        aComboBox.addItemListener(aListener);
    }
}