protected FilterComboBoxModel filterModel;
protected IconSizeComboBoxModel sizeModel;
public ChampionsController() {
this.filterModel = new FilterComboBoxModel();
this.sizeModel = new IconSizeComboBoxModel();
this.view = new ChampionsView(new ChampionsPanel(sizeModel.getSelectedItem(),filterModel.getSelectedItem()));
this.setView(this.view);
this.view.filterComboBox.setModel(this.filterModel);
this.view.filterComboBox.addActionListener(this);