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

Examples of org.eclipse.egit.ui.internal.blame.BlameRevision.Diff


        .grab(true, true).create());
    diffComposite.setLayout(GridLayoutFactory.fillDefaults().create());
  }

  private void createDiff(RevCommit parent) {
    Diff diff = revision.getDiffToParent(parent);
    if (diff != null) {
      try {
        createDiffLinkAndText(parent, diff);
      } catch (IOException e) {
        String msg = "Error creating diff in blame information control for commit " //$NON-NLS-1$
View Full Code Here

TOP

Related Classes of org.eclipse.egit.ui.internal.blame.BlameRevision.Diff

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.