Yesterday gseitz changed Wizard from: public class Wizard extends Panel implements IWizardModelListener, IWizard to: public class Wizard extends Panel<Void> implements IWizardModelListener, IWizard
Now, inside a Wizard, I cannot do: getModelObject() because you can't cast from Void to Foo. I think it needs to be changed to: public class Wizard<T> extends Panel<T> implements IWizardModelListener, IWizard Could someone make that change? Also, it would be good to review other places this <Void> construct is used - it should probably be at the very least <?> Thanks! Jeremy Thomerson