Examples of RevisionPainter


Examples of org.eclipse.jface.internal.text.revisions.RevisionPainter

   *
   * @param sharedColors the shared colors provider to use
   */
  public LineNumberChangeRulerColumn(ISharedTextColors sharedColors) {
    Assert.isNotNull(sharedColors);
    fRevisionPainter= new RevisionPainter(this, sharedColors);
    fDiffPainter= new DiffPainter(this, sharedColors);
  }
View Full Code Here

Examples of org.eclipse.jface.internal.text.revisions.RevisionPainter

   * @param sharedColors the colors to look up RGBs
   * @since 3.2
   */
  public ChangeRulerColumn(ISharedTextColors sharedColors) {
    Assert.isNotNull(sharedColors);
    fRevisionPainter= new RevisionPainter(this, sharedColors);
    fDiffPainter= new DiffPainter(this, null); // no shading
  }
View Full Code Here

Examples of org.eclipse.jface.internal.text.revisions.RevisionPainter

   * @param sharedColors the colors to look up RGBs
   * @since 3.2
   */
  public ChangeRulerColumn(ISharedTextColors sharedColors) {
    Assert.isNotNull(sharedColors);
    fRevisionPainter= new RevisionPainter(this, sharedColors);
    fDiffPainter= new DiffPainter(this, null); // no shading
  }
View Full Code Here

Examples of org.eclipse.jface.internal.text.revisions.RevisionPainter

   *
   * @param sharedColors the shared colors provider to use
   */
  public LineNumberChangeRulerColumn(ISharedTextColors sharedColors) {
    Assert.isNotNull(sharedColors);
    fRevisionPainter= new RevisionPainter(this, sharedColors);
    fDiffPainter= new DiffPainter(this, sharedColors);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.