14. 12. 6. If the combobox is editable, the new value can be any value
import javax.swing.JComboBox;
public class Main { public static void main(String[] argv) throws Exception {
// Create a read-only combobox
String[] items = { "item1", "item2" };
JComboBox cb = new JComboBox(items);