Package com.kolakcc.loljclient.model.swing

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


    this.view.rememberUsername.addActionListener(this);
    this.view.rememberPassword.addActionListener(this);
   
    this.regionsModel = new RegionsComboBoxModel();
    this.view.regionField.setModel(this.regionsModel);
    this.newsModel = new LoLNewsTableModel(this.regionsModel.getSelectedRegion().getNewsURL());
    this.view.newsList.setModel(this.newsModel);
   
    if (!Configuration.getDefaultUsername().isEmpty()) {
      this.view.rememberUsername.setSelected(true);
      this.view.usernameField.setText(Configuration.getDefaultUsername());
View Full Code Here

TOP

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

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.