Package org.eclipse.egit.ui.internal.blame.BlameOperation

Examples of org.eclipse.egit.ui.internal.blame.BlameOperation.BlameHistoryPageInput


    Repository repository = revision.getRepository();
    if (!repository.isBare()) {
      String sourcePath = revision.getSourcePath();
      File file = new File(repository.getWorkTree(), sourcePath);
      BlameHistoryPageInput input = new BlameHistoryPageInput(repository,
          revision.getCommit(), file);
      part.showHistoryFor(input);
    } else {
      HistoryPageInput input = new BlameHistoryPageInput(repository,
          revision.getCommit());
      part.showHistoryFor(input);
    }
  }
View Full Code Here

TOP

Related Classes of org.eclipse.egit.ui.internal.blame.BlameOperation.BlameHistoryPageInput

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.