renderedItemProperty);
}
public Binding createBoundComboBox(String formProperty, Object selectableItems, String renderedProperty) {
Map context = createContext(ComboBoxBinder.SELECTABLE_ITEMS_KEY, selectableItems);
context.put(ComboBoxBinder.RENDERER_KEY, new BeanPropertyValueListRenderer(renderedProperty));
context.put(ComboBoxBinder.EDITOR_KEY, new BeanPropertyEditorClosure(renderedProperty));
context.put(ComboBoxBinder.COMPARATOR_KEY, new PropertyComparator(renderedProperty, true, true));
return createBinding(JComboBox.class, formProperty, context);
}