Package org.apache.myfaces.trinidadinternal.ui.beans

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


      ContextPoppingUINode.getUINode(INFO_STATUS_CHILD));
    noTitleFlowLayout.addIndexedChild(headerContent);

    MarlinBean node = new MarlinBean(STACK_LAYOUT_NAME);
    node.addIndexedChild(ContextPoppingUINode.getUINode(MESSAGES_CHILD));
    node.addIndexedChild(noTitleFlowLayout);

    return node;
  }

View Full Code Here


  {
    MarlinBean headerContent = new MarlinBean(STACK_LAYOUT_NAME);
    headerContent.setIndexedNodeList(RootUINodeList.getNodeList());   

    MarlinBean noTitleFlowLayout = new MarlinBean(FLOW_LAYOUT_NAME);
    noTitleFlowLayout.addIndexedChild(
      ContextPoppingUINode.getUINode(INFO_STATUS_CHILD));
    noTitleFlowLayout.addIndexedChild(headerContent);

    MarlinBean node = new MarlinBean(STACK_LAYOUT_NAME);
    node.addIndexedChild(ContextPoppingUINode.getUINode(MESSAGES_CHILD));
View Full Code Here

    headerContent.setIndexedNodeList(RootUINodeList.getNodeList());   

    MarlinBean noTitleFlowLayout = new MarlinBean(FLOW_LAYOUT_NAME);
    noTitleFlowLayout.addIndexedChild(
      ContextPoppingUINode.getUINode(INFO_STATUS_CHILD));
    noTitleFlowLayout.addIndexedChild(headerContent);

    MarlinBean node = new MarlinBean(STACK_LAYOUT_NAME);
    node.addIndexedChild(ContextPoppingUINode.getUINode(MESSAGES_CHILD));
    node.addIndexedChild(noTitleFlowLayout);
View Full Code Here

    noTitleFlowLayout.addIndexedChild(
      ContextPoppingUINode.getUINode(INFO_STATUS_CHILD));
    noTitleFlowLayout.addIndexedChild(headerContent);

    MarlinBean node = new MarlinBean(STACK_LAYOUT_NAME);
    node.addIndexedChild(ContextPoppingUINode.getUINode(MESSAGES_CHILD));
    node.addIndexedChild(noTitleFlowLayout);

    return node;
  }
View Full Code Here

      ContextPoppingUINode.getUINode(INFO_STATUS_CHILD));
    noTitleFlowLayout.addIndexedChild(headerContent);

    MarlinBean node = new MarlinBean(STACK_LAYOUT_NAME);
    node.addIndexedChild(ContextPoppingUINode.getUINode(MESSAGES_CHILD));
    node.addIndexedChild(noTitleFlowLayout);

    return node;
  }

View Full Code Here

    //
    // Create content of PageLayout to use when we have no page title
    //
    MutableUINode noTitleContentLayout = new MarlinBean(STACK_LAYOUT_NAME);
    noTitleContentLayout.addIndexedChild(_sCreateContentTop(true));
    noTitleContentLayout.addIndexedChild(_createContentLayout(rootNodeList));


    // this is the name of the anchor used to skip the navigational area of a
    // pageLayout and jump to the content area.
    final String skipNavigationAnchor = "TheContent";
View Full Code Here

    content.addIndexedChild(noTitleContentLayout);

    MarlinBean compositeRoot = new MarlinBean(FLOW_LAYOUT_NAME);
    // delegate all of the attributes to the RootAttributeMap
    compositeRoot.setAttributeMap(RootAttributeMap.getAttributeMap());
    compositeRoot.addIndexedChild(
        _sCreateSkipNavigationLink(skipNavigationAnchor));
    compositeRoot.addIndexedChild(pageHeader);
    compositeRoot.addIndexedChild(content);
    compositeRoot.addIndexedChild(footer);
    return compositeRoot;
View Full Code Here

    MarlinBean compositeRoot = new MarlinBean(FLOW_LAYOUT_NAME);
    // delegate all of the attributes to the RootAttributeMap
    compositeRoot.setAttributeMap(RootAttributeMap.getAttributeMap());
    compositeRoot.addIndexedChild(
        _sCreateSkipNavigationLink(skipNavigationAnchor));
    compositeRoot.addIndexedChild(pageHeader);
    compositeRoot.addIndexedChild(content);
    compositeRoot.addIndexedChild(footer);
    return compositeRoot;
  }
View Full Code Here

    // delegate all of the attributes to the RootAttributeMap
    compositeRoot.setAttributeMap(RootAttributeMap.getAttributeMap());
    compositeRoot.addIndexedChild(
        _sCreateSkipNavigationLink(skipNavigationAnchor));
    compositeRoot.addIndexedChild(pageHeader);
    compositeRoot.addIndexedChild(content);
    compositeRoot.addIndexedChild(footer);
    return compositeRoot;
  }

  /**
 
View Full Code Here

    compositeRoot.setAttributeMap(RootAttributeMap.getAttributeMap());
    compositeRoot.addIndexedChild(
        _sCreateSkipNavigationLink(skipNavigationAnchor));
    compositeRoot.addIndexedChild(pageHeader);
    compositeRoot.addIndexedChild(content);
    compositeRoot.addIndexedChild(footer);
    return compositeRoot;
  }

  /**
   * create a link just before the page layout which a screen-reader user may
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.