UglyFocusHackWorkaroundListener.addListener(_attributeSuffix);
getWidgetFactory().createCLabel(topForm, Messages.getString("EOModel." + EOModel.ATTRIBUTE_NAMING_CONVENTION + ".case"), SWT.NONE);
Combo attributeCaseCombo = new Combo(topForm, SWT.BORDER | SWT.FLAT | SWT.READ_ONLY);
_attributeCase = new ComboViewer(attributeCaseCombo);
_attributeCase.setLabelProvider(new StringLabelProvider());
_attributeCase.setContentProvider(new ArrayContentProvider());
_attributeCase.setInput(NamingConvention.Case.values());
attributeCaseCombo.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
getWidgetFactory().createCLabel(topForm, Messages.getString("EOModel." + EOModel.ATTRIBUTE_NAMING_CONVENTION + ".separator"), SWT.NONE);
Combo attributeSeparatorCombo = new Combo(topForm, SWT.BORDER | SWT.FLAT | SWT.READ_ONLY);
_attributeSeparator = new ComboViewer(attributeSeparatorCombo);
_attributeSeparator.setLabelProvider(new StringLabelProvider());
_attributeSeparator.setContentProvider(new ArrayContentProvider());
_attributeSeparator.setInput(NamingConvention.Separator.values());
attributeSeparatorCombo.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
getWidgetFactory().createCLabel(topForm, Messages.getString("EOModel." + EOModel.ENTITY_NAMING_CONVENTION + ".prefix"), SWT.NONE);
_entityPrefix = new Text(topForm, SWT.BORDER);
_entityPrefix.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
UglyFocusHackWorkaroundListener.addListener(_entityPrefix);
getWidgetFactory().createCLabel(topForm, Messages.getString("EOModel." + EOModel.ENTITY_NAMING_CONVENTION + ".suffix"), SWT.NONE);
_entitySuffix = new Text(topForm, SWT.BORDER);
_entitySuffix.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
UglyFocusHackWorkaroundListener.addListener(_entitySuffix);
getWidgetFactory().createCLabel(topForm, Messages.getString("EOModel." + EOModel.ENTITY_NAMING_CONVENTION + ".case"), SWT.NONE);
Combo entityCaseCombo = new Combo(topForm, SWT.BORDER | SWT.FLAT | SWT.READ_ONLY);
_entityCase = new ComboViewer(entityCaseCombo);
_entityCase.setLabelProvider(new StringLabelProvider());
_entityCase.setContentProvider(new ArrayContentProvider());
_entityCase.setInput(NamingConvention.Case.values());
entityCaseCombo.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
getWidgetFactory().createCLabel(topForm, Messages.getString("EOModel." + EOModel.ENTITY_NAMING_CONVENTION + ".separator"), SWT.NONE);
Combo entitySeparatorCombo = new Combo(topForm, SWT.BORDER | SWT.FLAT | SWT.READ_ONLY);
_entitySeparator = new ComboViewer(entitySeparatorCombo);
_entitySeparator.setLabelProvider(new StringLabelProvider());
_entitySeparator.setContentProvider(new ArrayContentProvider());
_entitySeparator.setInput(NamingConvention.Separator.values());
entitySeparatorCombo.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
getWidgetFactory().createCLabel(topForm, "", SWT.NONE);