Return for confirm dialog. @param ret may be JavaScript NaN, testable as ret != ret or ret != - -ret
(int ret)
| 273 | * @param ret may be JavaScript NaN, testable as ret != ret or ret != - -ret |
| 274 | */ |
| 275 | private void process(int ret) { |
| 276 | if (ret != -(-ret) || processed) |
| 277 | return; |
| 278 | processed = true; |
| 279 | choice = ret; |
| 280 | actionListener.actionPerformed(new ActionEvent(this, ret, "SelectedOption")); |
| 281 | } |
| 282 | |
| 283 | private void process(Object ret) { |
| 284 | if (ret instanceof UIResource || processed) |
no test coverage detected