protected void done() {
try {
TypedObject gamesList = this.get();
if (CustomGameListController.this.gamesModel == null) {
CustomGameListController.this.gamesModel = new CustomGameTableModel(gamesList);
CustomGameListController.this.view.gamesListTable.setModel(CustomGameListController.this.gamesModel);
}
else {
CustomGameListController.this.gamesModel.clear();
CustomGameListController.this.gamesModel.add(gamesList);