5152535455565758
return; } catch (NoSuchMethodException e) {/*OK*/} log.warn("Was unable to deliver an event to a handler, eventId "+eventId); } catch (Exception e) { throw new InvalidEventException(eventId, e); } }
9899100101102103104105
for (Iterator i = onClickEventListeners.iterator(); i.hasNext();) { ((OnClickEventListener) i.next()).onClick(); } } else { throw new InvalidEventException((String) eventId); } }
5354555657585960
return; } catch (NoSuchMethodException e) {/*OK*/} log.warn("Was unable to deliver an event to a handler, eventId = '"+eventId + "'"); } catch (Exception e) { throw new InvalidEventException((String) eventId, e); } }