Olá, pessoal!!
Quando quero preencher jTextFields a partir de um campo combo box uso focusLost da seguinte forma:
tfCNPJ.setText(((ClienteJuridico)cbNomeFantasia.getSelectedItem()).getCnpj());
tfInscEstadual.setText(((ClienteJuridico)cbNomeFantasia.getSelectedItem()).getIcms());
tfRazaoSocial.setText(((ClienteJuridico)cbNomeFantasia.getSelectedItem()).getRazaoSocial());
tfCidade.setText(((ClienteJuridico)cbNomeFantasia.getSelectedItem()).getCidade().getNomeCidade());
tfEstado.setText(((ClienteJuridico)cbNomeFantasia.getSelectedItem()).getEstado().getNomeEstado());
Gostaria de fazer quando um campo jTextField perde o foco mas não estou sabendo como fazer. Alguém tem alguma sugestão??