(boolean s)
| 214 | } |
| 215 | |
| 216 | private void showShowMessage(boolean s) |
| 217 | { |
| 218 | final boolean show = s; |
| 219 | |
| 220 | SwingUtilities.invokeLater( |
| 221 | new Runnable() |
| 222 | { |
| 223 | public void run() |
| 224 | { |
| 225 | okButton.setVisible(show); |
| 226 | messageLabel.setVisible(show); |
| 227 | |
| 228 | for(int i=0; i<backgroundsShowMessage.length; i++) |
| 229 | { |
| 230 | backgroundsShowMessage[i].setVisible(show); |
| 231 | } |
| 232 | |
| 233 | showMessageVisible = show; |
| 234 | |
| 235 | repaint(); |
| 236 | } |
| 237 | } |
| 238 | ); |
| 239 | } |
| 240 | |
| 241 | private void showQuit(boolean s) |
| 242 | { |
no outgoing calls
no test coverage detected