I'm sure I should know this but I can't seem to get it right. I have a
LoadableDetachableModel as follows:


        private class AllUserModel extends LoadableDetachableModel<List<User>>{
                protected List<User> load() {
                        return userService().findAllUsers();
                }
        }


I'm trying to use this as the Choices model in a DropDownChoice, but no
luck. I'm sure I'm missing an <E> or a <T> or a<?> somewhere but I at a lost
as to what the exact problem is. I've been a consumer of generics forever,
but actually being on the creation side is a bit new to me. 

-- 
View this message in context: 
http://www.nabble.com/LDM-with-Generics-for-DropDownChoice-tp22155211p22155211.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to