public AWResponseGenerating invokeAction(AWRequestContext requestContext, AWComponent component)
{
if (PerformanceState.threadStateEnabled()) {
PerformanceState.getThisThreadHashtable().setSourcePage(_frame.getName());
WizardStep step = _frame.getStep();
// step could be null if it is the exit confirmation page.
if (step != null && !step.isTopLevelStep()) {
PerformanceState.getThisThreadHashtable().setSourceArea(step.getName());
}
}
return super.invokeAction(requestContext, component);
}