SwingWorker<TypedObject, Void> gameListWorker;
CustomGameTableModel gamesModel;
CustomGameFilterController filterController;
public CustomGameListController() {
this.view = new CustomGameListView();
this.setView(this.view);
this.initializeWorkers();
this.gameListWorker.execute();
this.view.gamesListTable.addMouseListener(this);
this.view.refreshButton.addActionListener(this);