Change
        public List getChoices()
        {
                return (List)choices.getObject(this);
        }

to
        public List getChoices()
        {
                List choices = (List)this.choices.getObject(this);
                if (choices == null)
                {
                        throw new NullPointerException("List of choices is null 
- Was the
supplied 'Choices' model empty?");
                }
                return choices;
        }

Most cases, the return is just used in a .sizes() call, so alternative
would be a normal NPE - Comments, or should I just commit it?

/Gwyn


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
_______________________________________________
Wicket-develop mailing list
Wicket-develop@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-develop

Reply via email to