private DatasetEditorModelCell cell;
private JBPopup popup;
public DatasetEditorErrorForm(DatasetEditorModelCell cell) {
this.cell = cell;
DatasetEditorError error = cell.getError();
error.addChangeListener(this);
errorIconLabel.setIcon(Icons.EXEC_MESSAGES_ERROR);
errorIconLabel.setText("");
errorMessageTextArea.setText(StringUtil.wrap(error.getMessage(), 60, ": ,."));
Color backgroundColor = BACKGROUND_COLOR;
errorMessageTextArea.setBackground(backgroundColor);
errorMessageTextArea.setFont(mainPanel.getFont());
mainPanel.setBackground(backgroundColor);