visidor/src/main/java/cz/xelfi/quoridor/visidor/BoardEvent.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 14 Sep 2010 09:46:43 +0200
changeset 266 15fcdfc4cd4a
parent 255 9ecd02d694cd
permissions -rw-r--r--
Using maven-license-plugin and updating all missing headers
     1 /**
     2  * Quoridor server and related libraries
     3  * Copyright (C) 2009-2010 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, either version 3 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://www.gnu.org/licenses/.
    17  */
    18 
    19 package cz.xelfi.quoridor.visidor;
    20 
    21 import cz.xelfi.quoridor.Move;
    22 import java.util.EventObject;
    23 
    24 /** Event describing what happens in {@link BoardPane}.
    25  *
    26  * @author Jaroslav Tulach <jtulach@netbeans.org>
    27  */
    28 public final class BoardEvent extends EventObject {
    29     private final Move move;
    30     
    31     BoardEvent(BoardPane p, Move m) {
    32         super(p);
    33         this.move = m;
    34     }
    35     
    36     /** The move that describes recent user gesture on the {@link BoardPane}.
    37      * 
    38      * @return the move or null, if this event does not describe a move
    39      */
    40     public Move getMove() {
    41         return move;
    42     }
    43 }