6667686970717273747576
} // install a selection highlighter no the panel final SelectionHighlighter caret = new SelectionHighlighter(); caret.install(xhtmlPanel); caret.selectAll(); FSScrollPane fs = new FSScrollPane(xhtmlPanel); mainPanel.add(fs,BorderLayout.CENTER);
8182838485868788899091
mainPanel.add(actionPanel, BorderLayout.SOUTH); // Select all text Action selectAll = new AbstractAction("Select All") { public void actionPerformed(ActionEvent event) { caret.selectAll(); } }; actionPanel.add(new JButton(selectAll));