{
UIWorkingWorkspace uiWorkingWS = uiPortalApp.getChildById(UIPortalApplication.UI_WORKING_WS_ID);
uiWorkingWS.setRenderedChild(UIPortal.class);
UIPortal uiPortal = uiWorkingWS.findFirstComponentOfType(UIPortal.class);
UIContainer uiContainer = Util.findUIComponent(uiPortal, UIContainer.class, UIPage.class);
UIPage uiPage = uiPortal.findFirstComponentOfType(UIPage.class);
UIPortlet uiPortlet = Util.findUIComponent(uiPortal, UIPortlet.class, UIPage.class);
String name = "";
if (uiContainer != null && uiContainer.isShowEditControl())
name = "'UIContainer'";
else if (uiPage != null && uiPage.isShowEditControl())
name = "'UIPage'";
else if (uiPortlet != null && uiPortlet.isShowEditControl())
name = "'UIPortlet'";