Sounds like a defect. If there is setter I can't think of a reason that
@Parameter shouldn't use it.
On Aug 29, 2011 6:15 AM, "Taha Hafeez" <tawus.tapes...@gmail.com> wrote:
> @Parameters do not use setters. They create a conduit to set/get the
> values directly , so setters are never used.
>
> You can look at the code of ParameterWorker for details
>
> you can always use setupRender to setup things
>
> On Mon, Aug 29, 2011 at 6:16 PM, Jens Breitenstein <mailingl...@j-b-s.de>
wrote:
>> Hi All!
>>
>> I tried to use a combination of @Property and @Parameter.
>>
>>
>> @Property(read = true, write = false)
>> @Parameter(required = true)
>> private String _myParam;
>>
>>
>> unfortunately it seems to be impossible to "intercept" a set in such a
case
>>
>>
>> // ---->> NEVER CALLED
>> public void String setMyParam(final String param)
>> {
>>    _myParam = param;
>>    // do more...
>> }
>>
>>
>> Is there any reason this is not allowed?
>>
>>
>> Jens
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
>> For additional commands, e-mail: users-h...@tapestry.apache.org
>>
>>
>
>
>
> --
> Regards
>
> Taha Hafeez Siddiqi (tawus)
> http://tawus.wordpress.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
> For additional commands, e-mail: users-h...@tapestry.apache.org
>

Reply via email to