()
| 294 | } |
| 295 | |
| 296 | public void refreshGameButton() |
| 297 | { |
| 298 | SwingUtilities.invokeLater( |
| 299 | new Runnable() |
| 300 | { |
| 301 | public void run() |
| 302 | { |
| 303 | if(graphwar.getGameData().getGameState() == Constants.NONE) |
| 304 | { |
| 305 | gameRoomButton.setVisible(false); |
| 306 | } |
| 307 | else |
| 308 | { |
| 309 | gameRoomButton.setVisible(true); |
| 310 | } |
| 311 | |
| 312 | repaint(); |
| 313 | } |
| 314 | } |
| 315 | ); |
| 316 | } |
| 317 | |
| 318 | public void refreshPlayers() |
| 319 | { |
no outgoing calls
no test coverage detected