1 11 12 package org.eclipse.ui.texteditor; 13 14 15 import org.eclipse.jface.action.IMenuListener; 16 17 18 29 public interface ITextEditorExtension { 30 31 39 void setStatusField(IStatusField field, String category); 40 41 49 boolean isEditorInputReadOnly(); 50 51 56 void addRulerContextMenuListener(IMenuListener listener); 57 58 63 void removeRulerContextMenuListener(IMenuListener listener); 64 } 65 66 | Popular Tags |