done,
  Gerolf

On Wed, May 7, 2008 at 7:32 PM, Jeremy Thomerson <[EMAIL PROTECTED]>
wrote:

> 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
>

Reply via email to