CustomGameFilterView view;
CustomGameTableModel model;
public CustomGameFilterController(CustomGameTableModel model) {
this.model = model;
this.view = new CustomGameFilterView();
this.view.filterField.getDocument().addDocumentListener(this);
this.view.addCheckboxListeners(this);
}