0
I’m filling my Jcombobox like this:
private void preencherCombo( ){
jComboEstado.removeAllItems();
List<Estado> lista = ec.listaObj("");
jComboEstado.addItem("Selecione um estado");
for( Estado e: lista ){
jComboEstado.addItem(e);
}
}
I’m trying to read the selected combobox option like this:
Estado e = (Estado) jComboEstado.getSelectedItem();
My Jcombobox is declared so:
private javax.swing.JComboBox jComboEstado;
I would like to add the first Item:
jComboEstado.addItem("Selecione um estado");
But you’re giving me this problem
Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: java.lang.String cannot be cast to br.com.brito.pdv.model.Estado