Just a heads up for anyone playing with HEAD/Wicket 2.0, one sneaky little trap I just found is that the Model class has changed its method signature from:

  public Object getObject(Component component)

to

  public Object getObject();

Anywhere I was extending Model this tripped up silently by -adding- my (now) overloaded getObject() method.  On the one or two instances where I was using AbstractReadOnlyModel (which doesn't provide a standard getObject() method) this signature change was trippedup and lead to finding this breakage.

Just a heads up for anyone else dipping there toes....

--
i like my video games - mamma said they are gonna melt my brains
i like my video games - i don't care what daddy said; they're my reality
  - henning pauly
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to