(MessageHandler listener)
| 557 | } |
| 558 | |
| 559 | private static Method getOnMessagePartialMethod(MessageHandler listener) { |
| 560 | try { |
| 561 | return listener.getClass().getMethod("onMessage", Object.class, Boolean.TYPE); |
| 562 | } catch (NoSuchMethodException | SecurityException e) { |
| 563 | throw new IllegalArgumentException(sm.getString("util.invalidMessageHandler"), e); |
| 564 | } |
| 565 | } |
| 566 | |
| 567 | |
| 568 | /** |
no test coverage detected