예제 #1
0
 /**
  * Invokes the handler for the given event and marks the event as handled.
  *
  * @param event the event to handle
  */
 protected void invokeHandler(Event<?> event) {
   eventRouter.routeEvent(event);
   markedAsHandled(event);
 }