Search code examples
javaswingjcombobox

How do I detect that a JComboBox is empty?


How do I detect that a JComboBox is empty? Is it something like:

combobox.isEmpty()


Solution

  • What's wrong with JComboBox.getItemCount()? If this method returns 0, the component is empty.