Examples of AnnotationThemeFactory


Examples of com.cb.eclipse.folding.theme.AnnotationThemeFactory

  public void setRangeIndication(boolean rangeIndication) {
    this.rangeIndication= rangeIndication;
  }

  private void drawRangeIndication(GC gc, Canvas canvas, Rectangle r) {
    AnnotationThemeFactory themeFactory = AnnotationThemeFactory.getFactory(this);
    ProjectionAnnotationRangeIndicator indicator = themeFactory.getRangeIndicator(this);
    indicator.paint(gc, canvas, r);
  }
View Full Code Here

Examples of com.cb.eclipse.folding.theme.AnnotationThemeFactory

   * Initializes the images on this class from the theme factory.
   * @param display
   */
  private void initializeImages(Display display) {
    if (collapsed == null) {
      AnnotationThemeFactory images = AnnotationThemeFactory.getFactory(this);
      collapsed = images.getCollapsedImage(display, this);
      expanded = images.getExpandedImage(display, this);     
    }   
  }
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.