component = BasicComponentFactory.createCheckBox(beanAdapterAtt
.getValueModel(IArticleAttributeModel.PROPERTY_ATTRIBUTE_VALUE_BOOL), "");
component.setName("CheckBox" + att.getAttributeName());
comps.put(att.getAttributeName(), component);
} else if (att.getChoices() != null && att.getChoices().size() != 0) {
component = new JComboBox(new ComboBoxAdapter(att.getChoices(), beanAdapterAtt
.getValueModel(IArticleAttributeModel.PROPERTY_ATTRIBUTE_VALUE)));
component.setName("ComboBox" + att.getAttributeName());
comps.put(att.getAttributeName(), component);
} else {
component = createTextField(att, beanAdapterAtt);