Package com.kolakcc.loljclient.model.swing

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


     
    }
  }

  public void updateGameLobby() {
    team1Model = new TeamListModel(this.gameDetailed, TEAM.TEAM1);
    team2Model = new TeamListModel(this.gameDetailed, TEAM.TEAM2);
    this.view.team1List.setModel(team1Model);
    this.view.team2List.setModel(team2Model);
    if (this.selectController != null) {
      this.selectController.view.team1List.setModel(team1Model);
      this.selectController.view.team2List.setModel(team2Model)
View Full Code Here

TOP

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

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.