Package org.eclipse.jface.text.source

Examples of org.eclipse.jface.text.source.IAnnotationPresentation.paint()


   */
  public void paint(Annotation annotation, GC gc, Canvas canvas, Rectangle bounds) {

    if (annotation instanceof IAnnotationPresentation) {
      IAnnotationPresentation presentation= (IAnnotationPresentation) annotation;
      presentation.paint(gc, canvas, bounds);
      return;
    }

    AnnotationPreference preference= getAnnotationPreference(annotation);
    if (preference != null) {
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.