Examples of addIndexedChild()


Examples of org.apache.myfaces.trinidadinternal.ui.beans.MarlinBean.addIndexedChild()

    compositeRoot.addIndexedChild(
                             ContextPoppingUINode.getUINode( MESSAGES_CHILD ));

    compositeRoot.addIndexedChild(content);

    compositeRoot.addIndexedChild(footer);

    return compositeRoot;
  }

View Full Code Here

Examples of org.apache.myfaces.trinidadinternal.ui.beans.MarlinBean.addIndexedChild()

    MarlinBean globalHeaders = new MarlinBean(FLOW_LAYOUT_NAME);

    //
    // add the client header
    //
    globalHeaders.addIndexedChild(
                       ContextPoppingUINode.getUINode(NAVIGATION2_CHILD));

    //
    // create and add the default header
    //
View Full Code Here

Examples of org.apache.myfaces.trinidadinternal.ui.beans.MarlinBean.addIndexedChild()

    MarlinBean compositeRoot = new MarlinBean(STACK_LAYOUT_NAME);

    // delegate all of the attributes to the RootAttribtueMap
    compositeRoot.setAttributeMap(RootAttributeMap.getAttributeMap());

    compositeRoot.addIndexedChild(brandingFlow);
    compositeRoot.addIndexedChild(
      ContextPoppingUINode.getUINode(NAVIGATION1_CHILD));
    compositeRoot.addIndexedChild(
      ContextPoppingUINode.getUINode(NAVIGATION2_CHILD));
View Full Code Here

Examples of org.apache.myfaces.trinidadinternal.ui.beans.MarlinBean.addIndexedChild()

    // delegate all of the attributes to the RootAttribtueMap
    compositeRoot.setAttributeMap(RootAttributeMap.getAttributeMap());

    compositeRoot.addIndexedChild(brandingFlow);
    compositeRoot.addIndexedChild(
      ContextPoppingUINode.getUINode(NAVIGATION1_CHILD));
    compositeRoot.addIndexedChild(
      ContextPoppingUINode.getUINode(NAVIGATION2_CHILD));

    return compositeRoot;
View Full Code Here

Examples of org.apache.myfaces.trinidadinternal.ui.beans.MarlinBean.addIndexedChild()

    compositeRoot.setAttributeMap(RootAttributeMap.getAttributeMap());

    compositeRoot.addIndexedChild(brandingFlow);
    compositeRoot.addIndexedChild(
      ContextPoppingUINode.getUINode(NAVIGATION1_CHILD));
    compositeRoot.addIndexedChild(
      ContextPoppingUINode.getUINode(NAVIGATION2_CHILD));

    return compositeRoot;
  }
View Full Code Here

Examples of org.apache.myfaces.trinidadinternal.ui.beans.MarlinBean.addIndexedChild()

                                                 hasSearch);
    BoundValue hasNavigation3AndSearch = new AndBoundValue( hasNavigation3, hasSearch);

    MarlinBean qsNoStartFlow = new MarlinBean(FLOW_LAYOUT_NAME);
    UINode quickSearch = ContextPoppingUINode.getUINode(SEARCH_CHILD);
    qsNoStartFlow.addIndexedChild( quickSearch );
    qsNoStartFlow.setAttributeValue(RENDERED_ATTR,
                                    hasSearchAndNoNavigation3);

    MarlinBean pageHeader = _sCreatePageHeader(globalHeaders,
                                                         qsNoStartFlow);
View Full Code Here

Examples of org.apache.myfaces.trinidadinternal.ui.beans.MarlinBean.addIndexedChild()

    // @todo if there is a navigation3 child, the search should go in the sideBar,
    // however we need a search component that will lay itself out properly
    // for the reduced space of a sideBar before we do that.
    MarlinBean startRegionLayout = new MarlinBean(SIDE_BAR_NAME);
    startRegionLayout.addIndexedChild(
                                ContextPoppingUINode.getUINode(NAVIGATION3_CHILD));

    startRegionLayout.setAttributeValue(RENDERED_ATTR, hasNavigation3);

    //
View Full Code Here

Examples of org.apache.myfaces.trinidadinternal.ui.beans.MarlinBean.addIndexedChild()

    // Create MarlinBean using what's in ACTIONS_CHILD
    // and INFO_RETURN_CHILD
    MarlinBean pageNavContentFooter = new MarlinBean(CONTENT_FOOTER_NAME);


    pageNavContentFooter.addIndexedChild(
                       ContextPoppingUINode.getUINode(ACTIONS_CHILD));
    pageNavContentFooter.setNamedChild(START_CHILD,
                       ContextPoppingUINode.getUINode(INFO_RETURN_CHILD));

    // Create MarlinBean using what's in CONTENT_FOOTER_CHILD
View Full Code Here

Examples of org.apache.myfaces.trinidadinternal.ui.beans.MarlinBean.addIndexedChild()

    pageNavContentFooter.setNamedChild(START_CHILD,
                       ContextPoppingUINode.getUINode(INFO_RETURN_CHILD));

    // Create MarlinBean using what's in CONTENT_FOOTER_CHILD
    MarlinBean contentMarlinBean = new MarlinBean(CONTENT_FOOTER_NAME);
    contentMarlinBean.addIndexedChild(
                       ContextPoppingUINode.getUINode(CONTENT_FOOTER_CHILD));

    // Use content footer created with
    // ACTIONS_CHILD and INFO_RETURN_CHILD
    contentFooterSwitcher.setNamedChild( _HAS_PAGE_NAV, pageNavContentFooter);
View Full Code Here

Examples of org.apache.myfaces.trinidadinternal.ui.beans.MarlinBean.addIndexedChild()

                                                 hasContentFooterBV);
    contentFooterSwitcher.setAttributeValue(CHILD_NAME_ATTR, childNameBV);

    // create footnote region above contentFooterSwitcher in StackLayout
    MarlinBean contentFooterStackLayout = new MarlinBean(STACK_LAYOUT_NAME);
    contentFooterStackLayout.addIndexedChild(
                  ContextPoppingUINode.getUINode(INFO_FOOTNOTE_CHILD));
    contentFooterStackLayout.addIndexedChild(contentFooterSwitcher);

    //
    // Create the footer area
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.