private void initDialog() {
Container content = getContentPane();
pane = new JTabbedPane(JTabbedPane.TOP);
fc = new JFileChooser();
sfc = new SSHFileChooser(null, remoteProject);
pane.addTab("Local", fc);
pane.addTab("Remote", sfc);
fc.addActionListener(this);
sfc.addActionListener(this);