1 11 package org.eclipse.jface.text.source; 12 13 import org.eclipse.swt.graphics.GC; 14 import org.eclipse.swt.graphics.Rectangle; 15 import org.eclipse.swt.widgets.Canvas; 16 17 22 public interface IAnnotationPresentation { 23 24 27 static final int DEFAULT_LAYER= 0; 28 29 30 35 int getLayer(); 36 37 48 void paint(GC gc, Canvas canvas, Rectangle bounds); 49 } 50 | Popular Tags |