将HTML /组件发送到复合组件

时间:2014-03-11 13:43:22

标签: jsf-2 composite-component

如何为我的复合组件实现这一目标?

简单示例:使用我的组件时:

<my:myComponent> html code and other components </my:myComponent>

我的复合组件实现:

<composite:implementation> <div> <!-- inject html code and other components here --> </div> </composite:implementation>

我能以某种方式使用装饰吗?

1 个答案:

答案 0 :(得分:1)

<composite:implementation>
   <div>
       <composite:insertChildren/>
   </div>
</composite:implementation>