public void renderChild(String id) throws Exception {
if (!(uicomponent_ instanceof UIContainer))
return;
UIContainer uicontainer = (UIContainer) uicomponent_;
UIComponent uiChild = uicontainer.getChildById(id);
uiChild.processRender(rcontext_);
}
public void renderUIComponent(UIComponent uicomponent) throws Exception {
uicomponent.processRender(rcontext_);
}