Command interface. @author Forge @version $Id$
| 26 | * @version $Id$ |
| 27 | */ |
| 28 | public interface GameCommand extends java.io.Serializable, Runnable { |
| 29 | /** Constant <code>Blank</code>. */ |
| 30 | GameCommand BLANK = new GameCommand() { |
| 31 | |
| 32 | private static final long serialVersionUID = 2689172297036001710L; |
| 33 | |
| 34 | @Override |
| 35 | public void run() { |
| 36 | } |
| 37 | |
| 38 | }; |
| 39 | } |
no outgoing calls
no test coverage detected