How can i ignore empty attributes of a composite component?
Example:
<cc:interface>
<cc:attribute name="styleClass" />
<cc:attribute name="value" />
</cc:interface>
<cc:implementation>
<h:inputText styleClass="#{cc.attrs.styleClass}"
value="#{cc.attrs.value}">
<cc:insertChildren />
</h:inputText>
</cc:implementation>
When i use the component by this:
<my:inputText />
It ...