super(owner, TITLE, ModalityType.APPLICATION_MODAL);
// Layout dialog.
final Container content = getContentPane();
content.setLayout(new BoxLayout(content, BoxLayout.Y_AXIS));
content.add(new TextControlWidget(control), Component.CENTER_ALIGNMENT);
content.add(createDoneButton());
pack();
}