Examples of DiffPainter


Examples of org.eclipse.jface.internal.text.source.DiffPainter

   * @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.source.DiffPainter

   *
   * @deprecated since 3.2 use {@link #ChangeRulerColumn(ISharedTextColors)} instead
   */
  public ChangeRulerColumn() {
    fRevisionPainter= null;
    fDiffPainter= new DiffPainter(this, null);
  }
View Full Code Here

Examples of org.eclipse.jface.internal.text.source.DiffPainter

   * @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.source.DiffPainter

   *
   * @deprecated since 3.2 use {@link #ChangeRulerColumn(ISharedTextColors)} instead
   */
  public ChangeRulerColumn() {
    fRevisionPainter= null;
    fDiffPainter= new DiffPainter(this, null);
  }
View Full Code Here

Examples of org.eclipse.jface.internal.text.source.DiffPainter

   * @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.source.DiffPainter

   * @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.