私は複合コンポーネントを持っています:
<cc:interface>
<cc:attribute name="value" required="true">
</cc:interface>
<cc:implementation>
<h:outputText value="#{cc.attrs.value}"/>
<h:commandButton action="#{internalBean.someAction}"/>
</cc:implementation>
そして、#{internalBean.someAction} で #{cc.attrs.value} を変更したいと思います。つまり、複合コンポーネントのメソッドでユーザー定義 (外部) Bean の (文字列) 値を変更します。どうすればそれができますか?
ありがとう。