}
editorComponent = textFieldWithPopup;
} else if (genericDataType.is(GenericDataType.BLOB, GenericDataType.CLOB)) {
editorComponent = new TextFieldWithTextEditor(project);
} else {
editorComponent = new BasicDataEditorComponent();
}
} else {
editorComponent = new BasicDataEditorComponent();
editorComponent.setEnabled(false);
editorComponent.setEditable(false);
}
valueFieldPanel.add((Component) editorComponent, BorderLayout.CENTER);