Package org.eclipse.egit.core.op

Examples of org.eclipse.egit.core.op.RenameBranchOperation


  @Override
  protected void buttonPressed(int buttonId) {
    if (buttonId == OK)
      try {
        String newName = name.getText();
        new RenameBranchOperation(repository, branchToRename, newName)
            .execute(null);
      } catch (CoreException e) {
        Activator.handleError(
            UIText.BranchRenameDialog_RenameExceptionMessage, e,
            true);
View Full Code Here

TOP

Related Classes of org.eclipse.egit.core.op.RenameBranchOperation

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.