I found a workaround. I thought that I would let this person know this problem.
Basically. Instead of setting the inputVerifier to the ComboBox, you set the "Component Editor" for it.
JComboBox combo = new JComboBox();
JTextField tf = (JTextField)(combo.getEditor().getEditorComponent());
tf.setInputVerifier(verifyer);
source
share