JLabel not changing text
I made a function that would load the contacts of my list :
private void loadContacts() {
List contactList = this.mContactBusiness.getList();
String[] columnNames = {"nome", "celular"};
DefaultTableModel model = new DefaultTableModel(new Object[0][0], columnNames);
for (ContactEntity entity : contactList) {
Object[] o = new Object[2];
o[0] = "nome";
o[1] = "celular";
model.addRow(o);
}...