Package com.kolakcc.loljclient.model.swing

Examples of com.kolakcc.loljclient.model.swing.IconSizeComboBoxModel


  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);
View Full Code Here

TOP

Related Classes of com.kolakcc.loljclient.model.swing.IconSizeComboBoxModel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.