protected JTextArea addTextArea(String title, String value) {
final TextArea text = new TextArea(value != null ? value : "");
text.setLineWrap(true);
text.setWrapStyleWord(true);
text.setBorder(new JTextField().getBorder());
text.addActionListener(this);
add(title, text);
return text;
}
/** Automatically remove the strut spacing and the component. */