Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To allow any pattern this method can return null or Pattern.compile(".*" )

...

add org.apache.wicket.markup.html.form.

...

IChoiceRenderer#getObject(String idValue, IModel<? extends List<? extends T>> choices) method WICKET-663

With WICKET-663 we wanted to add a new method to the interface that will allow faster lookup of an object by its id.

It wasn't easy to add this new method because it would break the API.

Since the creation of WICKET-663 until now there was no big benefit of having the interface so we decided to drop it.

Any custom implementations of IChoiceRenderer interface now should extend from ChoiceRenderer classThis method should return the object that produces idValue when org.apache.wicket.markup.html.form.IChoiceRenderer#getIdValue(T object, int index) is called.

remove org.apache.wicket.request.mapper.mount.MountMapper WICKET-4686

...