I am wondering if there is a nice way to decorate components with composite components?
Example:
<composite:implementation>
<div style="someFancyClass">
<h:inputText value="#{cc.attrs.value}" />
</div>
</composite:implementation>
In this case the value attribute is passed through to the contained <h:inputText>. But what about all the other attributes? Do I have to declare all of them in the <composite:interface> section?
It would be nice to have some kind of inheritance from standard components, so that e.g. the maxlength attribute of <h:inputText> is automatically available at the composite component.