desc.addPropertyColumn("firstName").withMinWidth(150);
desc.addPropertyColumn("address.address1");
desc.addPropertyColumn("address.city");
desc.addPropertyColumn("address.state");
desc.addPropertyColumn("address.zip");
widget = new GlazedListTableWidget(Arrays.asList(contactDataStore.getAllContacts()), desc);
JPanel table = new JPanel(new BorderLayout());
table.add(widget.getListSummaryLabel(), BorderLayout.NORTH);
table.add(widget.getComponent(), BorderLayout.CENTER);
table.add(widget.getButtonBar(), BorderLayout.SOUTH);