if (res == JOptionPane.OK_OPTION) {
if (tfName.getText().isEmpty() || tfGroupCode.getText().isEmpty()) {
MessageBox.showError(MessageBox.E_MAKE_FUCKING_EXCEPTION, "Данные некорректны");
return;
} else {
selected.rename(tfGroupCode.getText(), tfName.getText());
}
}
}
} catch (ClipsException ex) {
MessageBox.showException(ex);