Package pdp.scrabble.ihm.action.impl

Examples of pdp.scrabble.ihm.action.impl.MultiplayerActionImpl


   * @param mainFrame main frame reference.
   * @param game game reference.
   */ 
  public MultiplayerPanel(MainFrame mainFrame, GameEnvironment game) {
    this.mainFrame = mainFrame;
    this.action = new MultiplayerActionImpl(mainFrame, game, this);
    this.buttons = new TreeMap<String, JButton>();
    this.users = new JTable(this.modele);
    this.sorter = new TableRowSorter<TableModel>(this.users.getModel());

    this.setPreferredSize(new Dimension(380, 600));
View Full Code Here

TOP

Related Classes of pdp.scrabble.ihm.action.impl.MultiplayerActionImpl

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.