Why is LoadableDetachableModel read-only?

2007-11-02 Thread Peter Dotchev
could I use to store the selected object? Best regards, Petar -- View this message in context: http://www.nabble.com/Why-is-LoadableDetachableModel-read-only--tf4740811.html#a13556640 Sent from the Wicket - User mailing list archive at Nabble.com

Re: Why is LoadableDetachableModel read-only?

2007-11-02 Thread Eelco Hillenius
setObject() is not supported on LoadableDetachableModel because it extends AbstractReadOnlyModel. What is the reason for this? Because load is an algorithm to get the value; if you set the value you have two different ways of getting that value which gets inconsistent easily. This way