Package com.kolakcc.loljclient.model.swing

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


    this.view.team2List.setModel(team2);
    this.view.lockInButton.addActionListener(this);
    this.view.championsPanel.addChampionMouseListener(this);
    this.view.addActionListeners(this);
   
    spell1Model = new SpellComboBoxModel(LoggedInSummoner.summonerData.getClassicDefaultSpell1());
    this.view.summonerSpell1ComboBox.setModel(spell1Model);
   
    spell2Model = new SpellComboBoxModel(LoggedInSummoner.summonerData.getClassicDefaultSpell2());
    this.view.summonerSpell2ComboBox.setModel(spell2Model);
   
    RunePage currentRunePage = LoggedInSummoner.summonerData.getRunePages().get(0);
    for (RunePage runePage : LoggedInSummoner.summonerData.getRunePages()) {
      if (runePage.isCurrent()) {
View Full Code Here

TOP

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

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.