Package org.eclipse.jface.internal.text.revisions

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


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


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

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

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

Related Classes of org.eclipse.jface.internal.text.revisions.RevisionPainter$MouseHandler

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.