/** This method is used internally by the framework. Developer should not call or redefine it. */
  public void handleRestartEvent() {
    // Notify downwards
    myEvent.init(true, NOTIFY_DOWN);
    handle(myEvent);

    // Then notify upwards
    super.handleRestartEvent();
  }