Package org.eclipse.egit.ui.internal.fetch

Examples of org.eclipse.egit.ui.internal.fetch.FetchOperationUI


      } catch (URISyntaxException e) {
        Activator.logError(e.getMessage(), e);
        continue;
      }

      FetchOperationUI fetchOperationUI = new FetchOperationUI(repo,
          config, timeout, false);
      fetchOperationUI.setCredentialsProvider(new EGitCredentialsProvider());
      SubMonitor subMonitor = SubMonitor.convert(monitor);

      try {
        fetchOperationUI.execute(subMonitor);
        gsd.updateRevs();
      } catch (Exception e) {
        showInformationDialog(remoteName);
        Activator.logError(e.getMessage(), e);
      }
View Full Code Here


              UIText.SimpleFetchActionHandler_NothingToFetchDialogTitle,
              UIText.SimpleFetchActionHandler_NothingToFetchDialogMessage);
      return null;
    }

    new FetchOperationUI(repository, config, Activator.getDefault().getPreferenceStore()
            .getInt(UIPreferences.REMOTE_CONNECTION_TIMEOUT), false).start();
    return null;
  }
View Full Code Here

              UIText.SimpleFetchActionHandler_NothingToFetchDialogMessage);
      return null;
    }
    int timeout = Activator.getDefault().getPreferenceStore()
        .getInt(UIPreferences.REMOTE_CONNECTION_TIMEOUT);
    new FetchOperationUI(node.getRepository(), config, timeout, false)
        .start();
    return null;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.egit.ui.internal.fetch.FetchOperationUI

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.