1 11 package org.eclipse.jface.text.contentassist; 12 13 import org.eclipse.jface.text.ITextViewer; 14 import org.eclipse.jface.text.TextPresentation; 15 16 17 26 public interface IContextInformationPresenter { 27 28 35 void install(IContextInformation info, ITextViewer viewer, int offset); 36 37 46 boolean updatePresentation(int offset, TextPresentation presentation); 47 } 48 | Popular Tags |