*/
private void populateRichTextVerticalPanel() {
richTextArea = new RichTextArea();
richTextArea.setSize(EDITOR_WIDTH + "px", "300px");
RichTextToolbar richTextToolbar = new RichTextToolbar(richTextArea);
richTextToolbar.setWidth(EDITOR_WIDTH + "px");
richTextVerticalPanel.clear();
richTextVerticalPanel.add(richTextToolbar);
richTextVerticalPanel.add(richTextArea);
}