public class KoljaPropertyEditorRegistrar implements PropertyEditorRegistrar {
public void registerCustomEditors(PropertyEditorRegistry registry) {
registry.registerCustomEditor(Pattern.class, new PatternPropertyEditor());
registry.registerCustomEditor(DateFormat.class, new DateFormatPropertyEditor());
registry.registerCustomEditor(ColumnWidths.class, new ColumnWidthsPropertyEditor());
registry.registerCustomEditor(LocalDate.class, new LocalDatePropertyEditor());
registry.registerCustomEditor(LocalTime.class, new LocalTimePropertyEditor());
registry.registerCustomEditor(String[].class, new StringArrayPropertyEditor(","));
}