protected int after(Writer out) throws Exception {
OutputData output =
(OutputData) pageContext.getRequest().getAttribute(
StandardServletServiceAdapterComponent.OUTPUT_DATA_REQUEST_ATTRIBUTE);
Path currentScope = output.getScope();
// Call
Standard.StandardWidgetInterface widget = UiWidgetUtil.getWidgetFromContext(widgetId, pageContext);
while (output.getScope().hasNext())
output.popScope();
try {
widget._getWidget().render(output);
}
finally {
for (; currentScope.hasNext(); ) {
Object next = currentScope.next();
output.pushScope(next);
}
}
// Continue