/**
* Creates progress bar that can be used during connecting to the host
* and returns pane, where the progress bar is displayed.
*/
public final JPanel getProgressBarPane(final String title) {
final CancelCallback cancelCallback = new CancelCallback() {
@Override
public void cancel() {
if (commandThread != null) {
host.getSSH().cancelSession(commandThread);
}