setContentPane(contentPane);
setModal(true);
getRootPane().setDefaultButton(buttonRename);
final Color defaultBackground = textFieldName.getBackground();
textFieldName.getDocument().addDocumentListener(new AbstractDocumentListener() {
public void process(DocumentEvent e) {
boolean routeNameTooLong = textFieldName.getDocument().getLength() > format.getMaximumRouteNameLength();
textFieldName.setBackground(routeNameTooLong ? RED : defaultBackground);
if (routeNameTooLong) {
labelResult.setText(MessageFormat.format(RouteConverter.getBundle().getString("rename-position-list-name-too-long"),