desktop/desktop-sample/src/main/java/cz/xelfi/quoridor/desktop/sample/ShowGames.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 14 Sep 2010 09:58:04 +0200
branchdesktop
changeset 268 13fe01081e23
parent 260 8ebffb5aa10e
permissions -rw-r--r--
Updating licenses in desktop modules
jaroslav@268
     1
/**
jaroslav@268
     2
 * Quoridor server and related libraries
jaroslav@268
     3
 * Copyright (C) 2009-2010 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jaroslav@268
     4
 *
jaroslav@268
     5
 * This program is free software: you can redistribute it and/or modify
jaroslav@268
     6
 * it under the terms of the GNU General Public License as published by
jaroslav@268
     7
 * the Free Software Foundation, either version 3 of the License.
jaroslav@268
     8
 *
jaroslav@268
     9
 * This program is distributed in the hope that it will be useful,
jaroslav@268
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@268
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@268
    12
 * GNU General Public License for more details.
jaroslav@268
    13
 *
jaroslav@268
    14
 * You should have received a copy of the GNU General Public License
jaroslav@268
    15
 * along with this program. Look for COPYING file in the top folder.
jaroslav@268
    16
 * If not, see http://www.gnu.org/licenses/.
jaroslav@260
    17
 */
jaroslav@268
    18
jaroslav@260
    19
package cz.xelfi.quoridor.desktop.sample;
jaroslav@260
    20
jaroslav@260
    21
import cz.xelfi.quoridor.webidor.GameId;
jaroslav@260
    22
import java.awt.event.ActionEvent;
jaroslav@260
    23
import java.awt.event.ActionListener;
jaroslav@260
    24
jaroslav@260
    25
public final class ShowGames implements ActionListener {
jaroslav@260
    26
jaroslav@260
    27
    @Override
jaroslav@260
    28
    public void actionPerformed(ActionEvent e) {
jaroslav@260
    29
        for (GameId gameId : Quoridor.getDefault().listGames()) {
jaroslav@260
    30
            KukTopComponent tc = new KukTopComponent();
jaroslav@260
    31
            tc.setGameId(gameId.getId());
jaroslav@260
    32
            tc.setName(gameId.getWhite() + "/" + gameId.getBlack());
jaroslav@260
    33
            tc.open();
jaroslav@260
    34
        }
jaroslav@260
    35
    }
jaroslav@260
    36
}