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

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


  public Object execute(ExecutionEvent event) throws ExecutionException {
    final Repository repository = getRepository(true, event);
    if (repository == null)
      return null;

    final FetchWizard fetchWizard;
    try {
      fetchWizard = new FetchWizard(repository);
    } catch (URISyntaxException x) {
      ErrorDialog.openError(getShell(event),
          UIText.FetchAction_wrongURITitle,
          UIText.FetchAction_wrongURIMessage, new Status(
              IStatus.ERROR, Activator.getPluginId(), x
View Full Code Here


  public Object execute(ExecutionEvent event) throws ExecutionException {
    RepositoryNode node = getSelectedNodes(event).get(0);

    try {
      WizardDialog dlg = new WizardDialog(getShell(event),
          new FetchWizard(node.getRepository()));
      dlg.setHelpAvailable(false);
      dlg.open();
    } catch (URISyntaxException e1) {
      Activator.handleError(e1.getMessage(), e1, true);
    }
View Full Code Here

TOP

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

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.