this.targetTree = new JScrollPane();
// insert the treepanes
this.treesPanel.setLeftComponent(sourceTree);
this.treesPanel.setRightComponent(targetTree);
// message area
this.messageField = new JTextArea();
this.messageField.setLineWrap(true);
this.messageField.setWrapStyleWord(true);
this.messageField.setEditable(false);
JScrollPane messageSP = new JScrollPane(messageField);
// insert message area and treesPanel