Package org.eclipse.egit.ui.internal.history.CommitMessageViewer

Examples of org.eclipse.egit.ui.internal.history.CommitMessageViewer.ObjectLink


    return d.toString();
  }

  private void addLink(final StringBuilder d, String linkLabel,
      final List<StyleRange> styles, final RevCommit to) {
    final ObjectLink sr = new ObjectLink();
    sr.targetCommit = to;
    sr.foreground = linkColor;
    sr.underline = true;
    sr.start = d.length();
    d.append(linkLabel);
View Full Code Here

TOP

Related Classes of org.eclipse.egit.ui.internal.history.CommitMessageViewer.ObjectLink

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.