return;
}
if (parentRow != null)
{
final ReportState parentState = event.getState().getParentSubReportState();
final ReportEvent deepEvent;
if (parentState == null)
{
deepEvent = event;
}
else
{
deepEvent = new ReportEvent
(parentState, event.getState(), event.getType() | ReportEvent.DEEP_TRAVERSING_EVENT);
}
parentRow.fireReportEvent(deepEvent);
parentRow.updateImportedVariables(getGlobalView(), getDataSchema());
}