Galera, vi aqui mesmo no forum alguns cassos sobre esse problema porem não consegui resolver o meu problema com esses topicos por isso estou escrevendo este tenho o seguinte codigo
<ui:fragment rendered="#{cc.attrs.managedBean.renderer}">
<div id="tabs">
<ul>
<ui:repeat value="#{cc.attrs.managedBean.list}" var="teste">
<li>
<a >#{teste.title}</a>
<h:commandLink actionListener="#{cc.attrs.managedBean.removeView}" value="x" style="color:red;" >
<f:attribute name="tabId" value="#{teste.idTab}" />
</h:commandLink>
</li>
</ui:repeat>
</ul>
<ui:repeat value="#{cc.attrs.managedBean.list}" var="teste">
<div id="#{teste.idDiv}">
<ui:include src="#{teste.pathFile}" />
<h:outputLabel value="#{teste.pathFile}" />
</div>
</ui:repeat>
</div>
</ui:fragment>
e esses links são que adicionam as telas para o meu tab view
<h:commandLink value="Page One" actionListener="#{testeBean.addPage}" >
<f:attribute name="page" value="page1"/>
<f:attribute name="bean" value="#{tabBean}"/>
</h:commandLink>
<br></br>
<h:commandLink value="Page Two" actionListener="#{testeBean.addPage}" >
<f:attribute name="page" value="page2"/>
<f:attribute name="bean" value="#{tabBean}"/>
</h:commandLink>
<br></br>
<h:commandLink value="Page Three" actionListener="#{testeBean.addPage}" >
<f:attribute name="page" value="page3"/>
<f:attribute name="bean" value="#{tabBean}"/>
</h:commandLink>
<br></br>
<h:commandLink value="Page Four" actionListener="#{testeBean.addPage}" >
<f:attribute name="page" value="page4"/>
<f:attribute name="bean" value="#{tabBean}"/>
</h:commandLink>
<br></br>
<h:commandLink value="Page Five" actionListener="#{testeBean.addPage}" >
<f:attribute name="page" value="page5"/>
<f:attribute name="bean" value="#{tabBean}"/>
</h:commandLink>
<br></br>
<h:commandLink value="Page Six" actionListener="#{testeBean.addPage}" >
<f:attribute name="page" value="page6"/>
<f:attribute name="bean" value="#{tabBean}"/>
</h:commandLink>
<br></br>
<h:commandLink value="Page Seven" actionListener="#{testeBean.addPage}" >
<f:attribute name="page" value="page7"/>
<f:attribute name="bean" value="#{tabBean}"/>
</h:commandLink>
<br></br>
<h:commandLink value="Page Eight" actionListener="#{testeBean.addPage}" >
<f:attribute name="page" value="page8"/>
<f:attribute name="bean" value="#{tabBean}"/>
</h:commandLink>
<br></br>
<h:commandLink value="Page Nine" actionListener="#{testeBean.addPage}" >
<f:attribute name="page" value="page9"/>
<f:attribute name="bean" value="#{tabBean}"/>
</h:commandLink>
porem o include que tendo fazer não funciona, alguem ja passou por isso sabe como resolver isso ?
obrigado

Rapaz, se vc conseguir resolver, posta aqui que vou querer saber.