*/
public static <M, W> void registerDefaultConverter(Class<M> modelValueType, Class<W> widgetValueType,
Converter<M, W> converter) {
Assert.notNull(modelValueType);
Assert.notNull(widgetValueType);
defaultConverters.put(new ConverterRegistrationKey(modelValueType, widgetValueType), converter);
}