I have a JSF component which is initialized from a managed bean's getter getProperty(). Is it mandatory to also have a setter setProperty() in that managed bean?

link|improve this question
Is this for use with the binding attribute? – McDowell Sep 28 '11 at 8:16
the component's value is computed on the run. I don't have an attribute property in MB for getProperty. – user438698 Sep 28 '11 at 8:23
feedback

2 Answers

up vote 2 down vote accepted

It depends.

Some property bindings must be read-write. For example, if you bind the value of a component that implements EditableValueHolder. Other properties can be read-only.

If you use the binding attribute for dynamically creating component instances, this must also be read-write as per the contract defined in the specification.

link|improve this answer
value is linked with value attribute on component. Component is f:param so is not editable, I not use binding to link value on component so I think it's correct without setter. – user438698 Sep 28 '11 at 9:05
feedback

No, not mandatory. Unless you want to be able to bind the property in a way that allows its value to be changed.

EG. If you have a list of objects you want to display in a data table then a setter may not be needed. If you bind a string property to an textInput then you will need a setter.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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