(boolean s)
| 268 | } |
| 269 | |
| 270 | private void showJoinGlobal(boolean s) |
| 271 | { |
| 272 | final boolean show = s; |
| 273 | |
| 274 | SwingUtilities.invokeLater( |
| 275 | new Runnable() |
| 276 | { |
| 277 | public void run() |
| 278 | { |
| 279 | nameFieldGlobal.setVisible(show); |
| 280 | yesButtonGlobal.setVisible(show); |
| 281 | noButtonGlobal.setVisible(show); |
| 282 | joinGlobalVisible = show; |
| 283 | |
| 284 | for(int i=0; i<backgroundsGlobal.length; i++) |
| 285 | { |
| 286 | backgroundsGlobal[i].setVisible(show); |
| 287 | } |
| 288 | } |
| 289 | } |
| 290 | ); |
| 291 | } |
| 292 | |
| 293 | public void showMessage(String message) |
| 294 | { |
no outgoing calls
no test coverage detected