Package org.eclipse.egit.ui.internal.dialogs

Examples of org.eclipse.egit.ui.internal.dialogs.CreateTagDialog.open()


      Repository repository = commit.getRepository();
      CreateTagDialog dialog = new CreateTagDialog(
          HandlerUtil.getActiveShellChecked(event), commit
              .getRevCommit().getId(), repository);

      if (dialog.open() != Window.OK)
        return null;

      final TagBuilder tag = new TagBuilder();
      PersonIdent personIdent = new PersonIdent(repository);
      String tagName = dialog.getTagName();
View Full Code Here


    }

    CreateTagDialog dialog = new CreateTagDialog(getShell(event),
        currentBranchName, repo);

    if (dialog.open() != IDialogConstants.OK_ID)
      return null;

    final TagBuilder tag = new TagBuilder();
    PersonIdent personIdent = new PersonIdent(repo);
    final String tagName = dialog.getTagName();
View Full Code Here

    final Repository repo = getRepository(event);

    CreateTagDialog dialog = new CreateTagDialog(
        HandlerUtil.getActiveShellChecked(event), commitId, repo);

    if (dialog.open() != Window.OK)
      return null;

    final TagBuilder tag = new TagBuilder();
    PersonIdent personIdent = new PersonIdent(repo);
    String tagName = dialog.getTagName();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.