Package com.kolakcc.loljclient.model

Examples of com.kolakcc.loljclient.model.RecentGame


public class RecentGamesListModel implements ListModel<RecentGame> {
  private ArrayList<RecentGame> data = new ArrayList<RecentGame>();

  public RecentGamesListModel(TypedObject[] recentGamesList) {
    for (TypedObject game : recentGamesList) {
      RecentGame g = new RecentGame(game);
      this.data.add(g);
    }
    Collections.sort(this.data);
    Collections.reverse(this.data);
  }
View Full Code Here


  }
 
  public void mouseClicked(MouseEvent e) {
    if ((e == null) || (e.getSource() instanceof javax.swing.JList)) {
      if (this.gamesListModel.getSize() > 0) {
        RecentGame game = this.gamesListModel
            .getGameAt(view.getSelectedGameIndex());
        view.setSelectedGame(game);
      }
    } else {
      if (e.getClickCount() == 2) {
View Full Code Here

TOP

Related Classes of com.kolakcc.loljclient.model.RecentGame

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.