private Component createDocumentationPane()
{
JPanel panel = new JPanel();
panel.setLayout(new BorderLayout());
String string = Messages.getInstance().getString("ConnectionEditorDialog.Documentation");
JTextPane comp = new JTextPane();
comp.setPreferredSize(new Dimension(600, 100));
comp.setText(string);
comp.setBackground(null);
comp.setEditable(false);
comp.setHighlighter(null);
panel.add(comp, BorderLayout.CENTER);
return panel;
}