Package org.eclipse.egit.core.op

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


    super.buttonPressed(buttonId);
  }

  private int deleteBranch(final Set<Ref> ref, boolean force) throws CoreException {
    DeleteBranchOperation dbop = new DeleteBranchOperation(repo, ref, force);
    dbop.execute(null);
    return dbop.getStatus();
  }
View Full Code Here


    return null;
  }

  private int deleteBranch(Repository repo, final Ref ref, boolean force)
      throws CoreException {
    DeleteBranchOperation dbop = new DeleteBranchOperation(repo, ref, force);
    dbop.execute(null);
    return dbop.getStatus();
  }
View Full Code Here

    return unmergedNodes;
  }

  private int deleteBranch(final RefNode node, final Ref ref, boolean force)
      throws CoreException {
    DeleteBranchOperation dbop = new DeleteBranchOperation(node
        .getRepository(), ref, force);
    dbop.execute(null);
    return dbop.getStatus();
  }
View Full Code Here

TOP

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

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.