Versions Compared

Key

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

...

Wicket 2.0 requires Java 5. The main reason behind making this change is that we felt Wicket 1.2 is good enough to last a long time, and we didn't want to miss out any longer on parameterized types (generics).

Attach/detach listeners refactor

onAttach() and onDetach() overrides must now call their super implementation, otherwise an IllegalStateException is thrown.

It is recommended that onAttach() overrides call super implementation first, and onDetach() last.

Generics/ Parameterized types

...