Re: setRequired() final?

2009-03-05 Thread Kaspar Fischer
On 05.03.2009, at 15:11, jWeekend wrote: Kaspar, +1 :-) Thanks for the feedback. Good to know I'm on the right track. Kaspar - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: use

Re: setRequired() final?

2009-03-05 Thread jWeekend
Kaspar, +1 Regards - Cemal http://jWeekend.com jWeekend hbf wrote: > > On 05.03.2009, at 10:49, Kaspar Fischer wrote: > >> I have a form component to select items and would like to add lower >> and upper constraints on the number of items that need to be set by >> the user. I added setM

Re: setRequired() final?

2009-03-05 Thread Kaspar Fischer
On 05.03.2009, at 10:49, Kaspar Fischer wrote: I have a form component to select items and would like to add lower and upper constraints on the number of items that need to be set by the user. I added setMin() and setMax() methods and would like to override setRequired() to call setMin(1).

setRequired() final?

2009-03-05 Thread Kaspar Fischer
I have a form component to select items and would like to add lower and upper constraints on the number of items that need to be set by the user. I added setMin() and setMax() methods and would like to override setRequired() to call setMin(1). However, FormComponent.setRequired is final. Is