Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

up vote 1 down vote accepted

Do I have to declare all of them in the <composite:interface> section?

Not necessary, you can just use maxlength="#{cc.attrs.maxlength}" without the need to declare it as <composite:attribute>. However, this is bad for documentatory purposes. The developer would not see this attribute to appear in the composite component's documentation (which might be used by IDE autocompletion, for example).


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.

That's not possible. For that you'd really need to create a fullworthy custom UIInput component and/or a Renderer (in your particular case, just the renderer ought to be sufficient).

share|improve this answer
Thx for the answer, you are right, a renderer would be appropriate in the simple case shown above. But if I had to do it in the backing class, I could just copy the elements from attributes map to the attributes of the nested <h:inputText>, right? Which method would be right for that? decode() or should the component respond to the postAddToViewEvent? I'm just curious about it. – Darkspirit Sep 16 '11 at 6:44

I provided an example on how to decorate a composite component here http://stackoverflow.com/a/8881510/1151983

However, this does not provide real inheritance, but a way to share common stuff between a set of similar composite components.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.