Java tutorial
//package com.java2s; import java.util.List; import javax.swing.JComboBox; public class Main { @SuppressWarnings("rawtypes") public static void resetComboBoxItems(JComboBox comboBox, List items) { comboBox.removeAllItems(); addComboBoxItems(comboBox, items); } @SuppressWarnings("rawtypes") public static void addComboBoxItems(JComboBox comboBox, List items) { for (int i = 0; i < items.size(); i++) { comboBox.addItem(items.get(i)); } } }