Here you can find the source of loadCombo(JComboBox cmb, List data)
public static void loadCombo(JComboBox cmb, List data)
//package com.java2s; //License from project: Open Source License import java.util.Iterator; import java.util.List; import javax.swing.JComboBox; public class Main { public static void loadCombo(JComboBox cmb, List data) { cmb.addItem(" "); if (data != null) { Iterator it = data.iterator(); while (it.hasNext()) { cmb.addItem(it.next());/*from w ww. java 2 s . c om*/ } } } }