Here you can find the source of setComboBoxTheme(JComboBox comboBox)
public static void setComboBoxTheme(JComboBox comboBox)
//package com.java2s; //License from project: Open Source License import javax.swing.*; public class Main { public static void setComboBoxTheme(JComboBox comboBox) { comboBox.setEditable(true);/*from w w w . j a v a 2s .c o m*/ ((JTextField) comboBox.getEditor().getEditorComponent()).setEditable(false); } }