View Javadoc
1   /******************************************************************************
2    * AnimateEventPleaseRollOrDouble.java - Tell the GUI (to tell the user) to "Please Roll or Double."
3    * $Id$
4    * 
5    * BuckoFIBS - Backgammon by BuckoSoft
6    * Copyright© 2011 - Dick Balaska - BuckoSoft, Corp.
7    * 
8    * $Log$
9    * Revision 1.1  2011/05/22 22:56:09  dick
10   * c.b.f.B.g.boardTab.board becomes c.b.f.B.g.boardTab.boardPane .
11   *
12   * Revision 1.1  2011/05/22 05:22:21  dick
13   * Tell the GUI (to tell the user) to "Please Roll or Double."
14   *
15   */
16  
17  /* 
18   * This program is free software: you can redistribute it and/or modify
19   * it under the terms of the GNU General Public License as published by
20   * the Free Software Foundation, either version 3 of the License, or
21   * (at your option) any later version.
22   *
23   * This program is distributed in the hope that it will be useful,
24   * but WITHOUT ANY WARRANTY; without even the implied warranty of
25   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26   * GNU General Public License for more details.
27   *
28   * You should have received a copy of the GNU General Public License
29   * along with this program.  If not, see <http://www.gnu.org/licenses/>.
30   *
31   * The Original Code is BuckoFIBS, <http://www.buckosoft.com/BuckoFIBS/>.
32   * The Initial Developer of the Original Code is Dick Balaska and BuckoSoft, Corp.
33   * 
34   */
35  package com.buckosoft.fibs.BuckoFIBS.gui.boardTab.boardPane;
36  
37  
38  /** Tell the GUI (to tell the user) to "Please Roll or Double."
39   * @author Dick Balaska
40   * @since 2011/05/21
41   * @version $Revision$ <br> $Date$
42   * @see <a href="http://cvs.buckosoft.com/Projects/BuckoFIBS/BuckoFIBS/src/main/java/com/buckosoft/fibs/BuckoFIBS/gui/boardTab/boardPane/AnimateEventPleaseRollOrDouble.java">cvs AnimateEventPleaseRollOrDouble.java</a>
43   */
44  public class AnimateEventPleaseRollOrDouble extends AnimateEvent {
45  
46  	@Override
47  	public int getDuration() {
48  		return 0;
49  	}
50  
51  	@Override
52  	public Type getType() {
53  		return(Type.PleaseRollOrDouble);
54  	}
55  
56  	@Override
57  	public boolean isGui() {
58  		return true;
59  	}
60  
61  	/** Only constructor */
62  	public AnimateEventPleaseRollOrDouble() {}
63  
64  }