}
protected PropertyWidget createComboBox(Map<String, Object> conf, String property) {
//FIXME Get rid of this special treatment for combobox initialization
ComboBoxWidget comboBoxWidget = new ComboBoxWidget(project);
final PropertyEntityData propertyEntityData = new PropertyEntityData(property);
propertyEntityData.setValueType(ValueType.Instance);
comboBoxWidget.setup(conf, propertyEntityData);
return comboBoxWidget;
}