Package org.eclipse.egit.ui.internal.components

Examples of org.eclipse.egit.ui.internal.components.RepositorySelectionPage


   */
  public PushWizard(final Repository localDb) throws URISyntaxException {
    this.localDb = localDb;
    final List<RemoteConfig> remotes = RemoteConfig
        .getAllRemoteConfigs(localDb.getConfig());
    repoPage = new RepositorySelectionPage(false, remotes, null);
    repoPage.setHelpContext(HELP_CONTEXT);
    refSpecPage = new RefSpecPage(localDb, true) {
      @Override
      public void setVisible(boolean visible) {
        if (visible) {
View Full Code Here


   */
  public FetchWizard(final Repository localDb) throws URISyntaxException {
    this.localDb = localDb;
    final List<RemoteConfig> remotes = RemoteConfig
        .getAllRemoteConfigs(localDb.getConfig());
    repoPage = new RepositorySelectionPage(true, remotes, null);
    refSpecPage = new RefSpecPage(localDb, false) {
      @Override
      public void setVisible(boolean visible) {
        if (visible) {
          setSelection(repoPage.getSelection());
View Full Code Here

   * @param presetUri
   *            the clone URI to prepopulate the URI field of the clone wizard
   *            with.
   */
  public GitCloneWizard(String presetUri) {
    super(new RepositorySelectionPage(true, presetUri));
    initialize();
  }
View Full Code Here

  /**
   * @param sourceSelection
   */
  public SelectUriWizard(boolean sourceSelection) {
    page = new RepositorySelectionPage(sourceSelection, null);
    addPage(page);
    setWindowTitle(UIText.SelectUriWiazrd_Title);
  }
View Full Code Here

  /**
   * @param sourceSelection
   * @param presetUri
   */
  public SelectUriWizard(boolean sourceSelection, String presetUri) {
    page = new RepositorySelectionPage(sourceSelection, presetUri);
    addPage(page);
    setWindowTitle(UIText.SelectUriWiazrd_Title);
  }
View Full Code Here

  }

  public void addPages() {
    pathPage = new SubmodulePathWizardPage(repo);
    addPage(pathPage);
    uriPage = new RepositorySelectionPage(true, null);
    uriPage.setPageComplete(false);
    addPage(uriPage);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.egit.ui.internal.components.RepositorySelectionPage

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.