On Thu, Jul 28, 2011 at 12:12 PM, Carl-Eric Menzel <[email protected]>wrote:

>
> https://github.com/duesenklipper/wicket-safemodel
>
> As I wrote earlier on this list, SafeModel lets you turn the fragile
> strings of this:
>
> IModel<String> childNameModel = new PropertyModel<String>(
>    myBean, "child.name");
>
> ...into this, gaining refactor-safety:
>
> IModel<String> childNameModel =
> model(from(myBean).getChild().getName());
>
>

Does it require a default constructor?

Reply via email to