private JEditorPane getEditorTextPane() {
if (helpEditorPane == null) {
try {
helpEditorPane = new JEditorPane(url);
helpEditorPane.setEditable(false);
helpEditorPane.addHyperlinkListener(new OpenHyperlink());
} catch (IOException e) {
e.printStackTrace();
}
}
return helpEditorPane;