Java tutorial
//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); } }