Initial notes on Wicket V2.0

rendering

pros

cons

link components through constructor not via add(Component parent)

pros

cons

converters

We should really make a converter that does 2 ways:
convertToString(Object, Locale)
convertToObject(String, Class, Locale)

then we can kill the ITypeConverter interface
the current Converter object can then be CompoundConverter which just maps the convert call to the right converter.

then for example the current DateConverter and DateToStringConverter should be merged into one IConverter class

pros