1 11 package org.eclipse.jface.text.source; 12 13 14 import org.eclipse.swt.graphics.Font; 15 import org.eclipse.swt.widgets.Composite; 16 import org.eclipse.swt.widgets.Control; 17 18 19 30 public interface IVerticalRulerColumn { 31 32 38 void setModel(IAnnotationModel model); 39 40 43 void redraw(); 44 45 52 Control createControl(CompositeRuler parentRuler, Composite parentControl); 53 54 59 Control getControl(); 60 61 66 int getWidth(); 67 68 73 void setFont(Font font); 74 } 75 | Popular Tags |